gitextract_87o4bcld/ ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.rst ├── COPYING ├── README.md ├── cmake/ │ └── modules/ │ ├── BuildFunctions.cmake │ ├── CodeCoverage.cmake │ ├── ConfigurationSetting.cmake │ ├── ListSplit.cmake │ └── ZooKeeper.cmake ├── config/ │ ├── dev-env │ ├── docker/ │ │ ├── debian-10/ │ │ │ └── Dockerfile │ │ ├── opensuse-15/ │ │ │ └── Dockerfile │ │ ├── ubuntu-16.04/ │ │ │ └── Dockerfile │ │ ├── ubuntu-18.04/ │ │ │ └── Dockerfile │ │ └── ubuntu-20.04/ │ │ └── Dockerfile │ ├── make-doxygen │ ├── make-package │ ├── make-packages │ ├── publish-doxygen │ ├── run-tests │ ├── travisci_rsa.enc │ └── upload-coverage ├── doc/ │ └── Doxyfile ├── install/ │ └── deb/ │ ├── libzkpp/ │ │ ├── control.in │ │ ├── postinst.in │ │ └── shlibs.in │ ├── libzkpp-dev/ │ │ └── control.in │ ├── libzkpp-server/ │ │ ├── control.in │ │ └── postinst.in │ └── libzkpp-server-dev/ │ └── control.in └── src/ └── zk/ ├── acl.cpp ├── acl.hpp ├── acl_tests.cpp ├── buffer.hpp ├── client.cpp ├── client.hpp ├── client_tests.cpp ├── config.hpp ├── connection.cpp ├── connection.hpp ├── connection_tests.cpp ├── connection_zk.cpp ├── connection_zk.hpp ├── error.cpp ├── error.hpp ├── error_tests.cpp ├── exceptions.cpp ├── exceptions.hpp ├── forwards.hpp ├── future.hpp ├── multi.cpp ├── multi.hpp ├── multi_tests.cpp ├── optional.hpp ├── optional_tests.cpp ├── results.cpp ├── results.hpp ├── server/ │ ├── classpath.cpp │ ├── classpath.hpp │ ├── classpath_registration_template.cpp.in │ ├── classpath_tests.cpp │ ├── configuration.cpp │ ├── configuration.hpp │ ├── configuration_tests.cpp │ ├── detail/ │ │ ├── close.cpp │ │ ├── close.hpp │ │ ├── event_handle.cpp │ │ ├── event_handle.hpp │ │ ├── pipe.cpp │ │ ├── pipe.hpp │ │ ├── pipe_tests.cpp │ │ ├── subprocess.cpp │ │ ├── subprocess.hpp │ │ └── subprocess_tests.cpp │ ├── package_registry.cpp │ ├── package_registry.hpp │ ├── package_registry_tests.cpp │ ├── package_registry_tests.hpp │ ├── server.cpp │ ├── server.hpp │ ├── server_group.cpp │ ├── server_group.hpp │ ├── server_group_tests.cpp │ ├── server_tests.cpp │ └── server_tests.hpp ├── string_view.hpp ├── tests/ │ ├── main.cpp │ ├── test.cpp │ └── test.hpp ├── types.cpp ├── types.hpp └── types_tests.cpp