├── .gitignore ├── .gitmodules ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── NEWS ├── README.md ├── cmake.h.in ├── cmake └── CXXSniffer.cmake ├── commit.h.in ├── demo ├── README ├── client │ ├── .gitignore │ ├── case1 │ ├── case2 │ ├── case3 │ ├── case4 │ ├── case5 │ ├── case6 │ ├── case7 │ ├── case7a │ ├── case8 │ ├── malformed1 │ ├── run │ ├── setup │ └── sync.1 └── server │ ├── .gitignore │ ├── run │ └── setup ├── doc ├── CMakeLists.txt └── man │ ├── .gitignore │ ├── taskd.1.in │ ├── taskdctl.1.in │ └── taskdrc.5.in ├── mon ├── README ├── create ├── graph ├── stats.request └── update ├── pki ├── .gitignore ├── README ├── check_expire ├── generate ├── generate.ca ├── generate.client ├── generate.crl ├── generate.server └── vars ├── scripts ├── profile.py ├── setup_server.bash └── systemd │ └── taskd.service ├── src ├── .gitignore ├── CMakeLists.txt ├── ConfigFile.cpp ├── ConfigFile.h ├── Database.cpp ├── Database.h ├── ProxyServer.cpp ├── ProxyServer.h ├── Server.cpp ├── Server.h ├── TCPServer.cpp ├── TCPServer.h ├── TLSClient.cpp ├── TLSClient.h ├── TLSServer.cpp ├── TLSServer.h ├── Task.cpp ├── Task.h ├── admin.cpp ├── api.cpp ├── client.cpp ├── config.cpp ├── daemon.cpp ├── diag.cpp ├── help.cpp ├── init.cpp ├── taskd.cpp ├── taskd.h ├── taskdctl ├── util.cpp └── util.h └── test ├── .gitignore ├── CMakeLists.txt ├── basetest ├── README ├── __init__.py ├── compat.py ├── exceptions.py ├── hooks.py ├── meta.py ├── taskd.py ├── testing.py └── utils.py ├── config.t.cpp ├── config2.t ├── init.t ├── org.t ├── problems ├── run_all ├── simpletap └── __init__.py ├── template.t ├── test.cpp ├── test.h ├── test_certs ├── README ├── ca.cert.pem ├── ca.key.pem ├── client.cert.pem ├── client.key.pem ├── server.cert.pem ├── server.crl.pem ├── server.key.pem ├── test_client.cert.pem └── test_client.key.pem ├── user.t └── version.t /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/README.md -------------------------------------------------------------------------------- /cmake.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/cmake.h.in -------------------------------------------------------------------------------- /cmake/CXXSniffer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/cmake/CXXSniffer.cmake -------------------------------------------------------------------------------- /commit.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/commit.h.in -------------------------------------------------------------------------------- /demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/README -------------------------------------------------------------------------------- /demo/client/.gitignore: -------------------------------------------------------------------------------- 1 | tw? 2 | user.key 3 | bad.* 4 | stats.* 5 | -------------------------------------------------------------------------------- /demo/client/case1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case1 -------------------------------------------------------------------------------- /demo/client/case2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case2 -------------------------------------------------------------------------------- /demo/client/case3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case3 -------------------------------------------------------------------------------- /demo/client/case4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case4 -------------------------------------------------------------------------------- /demo/client/case5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case5 -------------------------------------------------------------------------------- /demo/client/case6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case6 -------------------------------------------------------------------------------- /demo/client/case7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case7 -------------------------------------------------------------------------------- /demo/client/case7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case7a -------------------------------------------------------------------------------- /demo/client/case8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/case8 -------------------------------------------------------------------------------- /demo/client/malformed1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/malformed1 -------------------------------------------------------------------------------- /demo/client/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/run -------------------------------------------------------------------------------- /demo/client/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/client/setup -------------------------------------------------------------------------------- /demo/client/sync.1: -------------------------------------------------------------------------------- 1 | type: sync 2 | org: Public 3 | user: USER 4 | key: KEY 5 | client: taskwarrior 2.5.1 6 | protocol: v1 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/server/.gitignore -------------------------------------------------------------------------------- /demo/server/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/server/run -------------------------------------------------------------------------------- /demo/server/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/demo/server/setup -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/man/.gitignore: -------------------------------------------------------------------------------- 1 | *.[0-9] 2 | -------------------------------------------------------------------------------- /doc/man/taskd.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/doc/man/taskd.1.in -------------------------------------------------------------------------------- /doc/man/taskdctl.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/doc/man/taskdctl.1.in -------------------------------------------------------------------------------- /doc/man/taskdrc.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/doc/man/taskdrc.5.in -------------------------------------------------------------------------------- /mon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/mon/README -------------------------------------------------------------------------------- /mon/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/mon/create -------------------------------------------------------------------------------- /mon/graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/mon/graph -------------------------------------------------------------------------------- /mon/stats.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/mon/stats.request -------------------------------------------------------------------------------- /mon/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/mon/update -------------------------------------------------------------------------------- /pki/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | *.template 3 | -------------------------------------------------------------------------------- /pki/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/README -------------------------------------------------------------------------------- /pki/check_expire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/check_expire -------------------------------------------------------------------------------- /pki/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/generate -------------------------------------------------------------------------------- /pki/generate.ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/generate.ca -------------------------------------------------------------------------------- /pki/generate.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/generate.client -------------------------------------------------------------------------------- /pki/generate.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/generate.crl -------------------------------------------------------------------------------- /pki/generate.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/generate.server -------------------------------------------------------------------------------- /pki/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/pki/vars -------------------------------------------------------------------------------- /scripts/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/scripts/profile.py -------------------------------------------------------------------------------- /scripts/setup_server.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/scripts/setup_server.bash -------------------------------------------------------------------------------- /scripts/systemd/taskd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/scripts/systemd/taskd.service -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/ConfigFile.cpp -------------------------------------------------------------------------------- /src/ConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/ConfigFile.h -------------------------------------------------------------------------------- /src/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/Database.cpp -------------------------------------------------------------------------------- /src/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/Database.h -------------------------------------------------------------------------------- /src/ProxyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/ProxyServer.cpp -------------------------------------------------------------------------------- /src/ProxyServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/ProxyServer.h -------------------------------------------------------------------------------- /src/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/Server.cpp -------------------------------------------------------------------------------- /src/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/Server.h -------------------------------------------------------------------------------- /src/TCPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/TCPServer.cpp -------------------------------------------------------------------------------- /src/TCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/TCPServer.h -------------------------------------------------------------------------------- /src/TLSClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/TLSClient.cpp -------------------------------------------------------------------------------- /src/TLSClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/TLSClient.h -------------------------------------------------------------------------------- /src/TLSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/TLSServer.cpp -------------------------------------------------------------------------------- /src/TLSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/TLSServer.h -------------------------------------------------------------------------------- /src/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/Task.cpp -------------------------------------------------------------------------------- /src/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/Task.h -------------------------------------------------------------------------------- /src/admin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/admin.cpp -------------------------------------------------------------------------------- /src/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/api.cpp -------------------------------------------------------------------------------- /src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/client.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/daemon.cpp -------------------------------------------------------------------------------- /src/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/diag.cpp -------------------------------------------------------------------------------- /src/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/help.cpp -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/taskd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/taskd.cpp -------------------------------------------------------------------------------- /src/taskd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/taskd.h -------------------------------------------------------------------------------- /src/taskdctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/taskdctl -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/src/util.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/basetest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/README -------------------------------------------------------------------------------- /test/basetest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/__init__.py -------------------------------------------------------------------------------- /test/basetest/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/compat.py -------------------------------------------------------------------------------- /test/basetest/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/exceptions.py -------------------------------------------------------------------------------- /test/basetest/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/hooks.py -------------------------------------------------------------------------------- /test/basetest/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/meta.py -------------------------------------------------------------------------------- /test/basetest/taskd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/taskd.py -------------------------------------------------------------------------------- /test/basetest/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/testing.py -------------------------------------------------------------------------------- /test/basetest/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/basetest/utils.py -------------------------------------------------------------------------------- /test/config.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/config.t.cpp -------------------------------------------------------------------------------- /test/config2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/config2.t -------------------------------------------------------------------------------- /test/init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/init.t -------------------------------------------------------------------------------- /test/org.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/org.t -------------------------------------------------------------------------------- /test/problems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/problems -------------------------------------------------------------------------------- /test/run_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/run_all -------------------------------------------------------------------------------- /test/simpletap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/simpletap/__init__.py -------------------------------------------------------------------------------- /test/template.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/template.t -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test.h -------------------------------------------------------------------------------- /test/test_certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/README -------------------------------------------------------------------------------- /test/test_certs/ca.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/ca.cert.pem -------------------------------------------------------------------------------- /test/test_certs/ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/ca.key.pem -------------------------------------------------------------------------------- /test/test_certs/client.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/client.cert.pem -------------------------------------------------------------------------------- /test/test_certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/client.key.pem -------------------------------------------------------------------------------- /test/test_certs/server.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/server.cert.pem -------------------------------------------------------------------------------- /test/test_certs/server.crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/server.crl.pem -------------------------------------------------------------------------------- /test/test_certs/server.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/server.key.pem -------------------------------------------------------------------------------- /test/test_certs/test_client.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/test_client.cert.pem -------------------------------------------------------------------------------- /test/test_certs/test_client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/test_certs/test_client.key.pem -------------------------------------------------------------------------------- /test/user.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/user.t -------------------------------------------------------------------------------- /test/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/taskserver/HEAD/test/version.t --------------------------------------------------------------------------------