dnsacl_inc.cc 809 B

1234567891011121314151617
  1. namespace {
  2. const char* const dnsacl_doc = "\
  3. Implementation module for DNS ACL operations\n\n\
  4. This module provides Python bindings for the C++ classes in the\n\
  5. isc::acl::dns namespace. Specifically, it defines Python interfaces of\n\
  6. handling access control lists (ACLs) with DNS related contexts.\n\
  7. These bindings are close match to the C++ API, but they are not complete\n\
  8. (some parts are not needed) and some are done in more python-like ways.\n\
  9. \n\
  10. Special objects:\n\
  11. \n\
  12. REQUEST_LOADER -- A singleton loader of ACLs. It is expected applications\n\
  13. will use this function instead of creating their own loaders, because\n\
  14. one is enough, this one will have registered default checks and it is\n\
  15. known one, so any plugins can registrer additional checks as well.\n\
  16. ";
  17. } // unnamed namespace