X-Git-Url: https://git.ralfj.de/dyn-nsupdate.git/blobdiff_plain/df4a93717c9081fd96f465e98b09b7e875433f12..229a31d3a318cc66dc82428f1429c3aea787f64f:/dyn-nsupdate.cpp diff --git a/dyn-nsupdate.cpp b/dyn-nsupdate.cpp index f2243bd..b0bf885 100644 --- a/dyn-nsupdate.cpp +++ b/dyn-nsupdate.cpp @@ -31,13 +31,14 @@ #include #include +#include #include #include #include #include -using namespace boost; -typedef property_tree::ptree::path_type path; +namespace pt = boost::property_tree; +namespace po = boost::program_options; static void write(int fd, const char *str) { @@ -51,9 +52,9 @@ static void write(int fd, const char *str) int main(int argc, const char ** argv) { - static const regex regex_ip("\\d{1,3}.\\d{1,3}.\\d{1,3}.\\d{1,3}"); - static const regex regex_password("[a-zA-Z0-9.:;,_-]+"); - static const regex regex_domain("[a-zA-Z0-9.]+"); + static const boost::regex regex_ip("\\d{1,3}.\\d{1,3}.\\d{1,3}.\\d{1,3}"); + static const boost::regex regex_password("[a-zA-Z0-9.:;,_-]+"); + static const boost::regex regex_domain("[a-zA-Z0-9.]+"); if (argc != 4) { @@ -81,13 +82,13 @@ int main(int argc, const char ** argv) } /* read configuration */ - property_tree::ptree config; - property_tree::ini_parser::read_ini(CONFIG_FILE, config); + pt::ptree config; + pt::ini_parser::read_ini(CONFIG_FILE, config); std::string nsupdate = config.get("nsupdate"); unsigned server_port = config.get("port", 53); /* Given the domain, check whether the password matches */ - optional correct_password = config.get_optional(path(domain+"/password", '/')); + boost::optional correct_password = config.get_optional(pt::ptree::path_type(domain+"/password", '/')); if (!correct_password || *correct_password != password) { std::cerr << "Password incorrect." << std::endl; exit(1);