+ typedef std::pair<std::string, std::string> Pair;
+ enum Type { UNIX, TCP };
+
+ struct Section
+ {
+ Section() {}
+ Section(const Pairs& ma, const Pairs& mo, const Pairs& re)
+ : match(ma), modify(mo), reply(re) {}
+ Pairs match;
+ Pairs modify;
+ Pairs reply;
+ };