├── .github ├── scripts │ └── get_sonarcloud.sh └── workflows │ ├── codeql-analysis.yml │ ├── push.yml │ ├── release.yml │ └── tag.yml ├── .gitignore ├── .sonar-project.properties ├── .whitesource ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── patches └── nanomsg.patch ├── src ├── CMakeLists.txt ├── ParodusInternal.c ├── ParodusInternal.h ├── auth_token.c ├── auth_token.h ├── client_list.c ├── client_list.h ├── close_retry.c ├── close_retry.h ├── config.c ├── config.h ├── conn_interface.c ├── conn_interface.h ├── connection.c ├── connection.h ├── crud_interface.c ├── crud_interface.h ├── crud_internal.c ├── crud_internal.h ├── crud_tasks.c ├── crud_tasks.h ├── downstream.c ├── downstream.h ├── event_handler.c ├── event_handler.h ├── heartBeat.c ├── heartBeat.h ├── main.c ├── mutex.c ├── mutex.h ├── networking.c ├── nopoll_handlers.c ├── nopoll_handlers.h ├── nopoll_helpers.c ├── nopoll_helpers.h ├── parodus_log.h ├── partners_check.c ├── partners_check.h ├── privilege.c ├── privilege.h ├── service_alive.c ├── service_alive.h ├── seshat_interface.c ├── seshat_interface.h ├── seshat_interface_stub.c ├── spin_thread.c ├── spin_thread.h ├── string_helpers.c ├── thread_tasks.c ├── thread_tasks.h ├── time.c ├── time.h ├── token.c ├── token.h ├── token_stub.c ├── upstream.c └── upstream.h └── tests ├── CMakeLists.txt ├── curl_parodus.py ├── key4.pem ├── mock_event_handler.c ├── parodus_cmd.sh ├── pubkey4.pem ├── return_failure.bsh ├── return_ser_mac.bsh ├── return_success.bsh ├── rq3.txt ├── simple_connection.c ├── test_ParodusInternal.c ├── test_auth_token.c ├── test_auth_token_more.c ├── test_client_list.c ├── test_close_retry.c ├── test_config.c ├── test_conn_interface.c ├── test_connection.c ├── test_createConnection.c ├── test_crud_interface.c ├── test_crud_internal.c ├── test_crud_tasks.c ├── test_downstream.c ├── test_downstream_more.c ├── test_heartBeatTimer.c ├── test_mutex.c ├── test_networking.c ├── test_nopoll_handlers.c ├── test_nopoll_handlers_fragment.c ├── test_nopoll_helpers.c ├── test_partners_check.c ├── test_service_alive.c ├── test_seshat_interface.c ├── test_seshat_interface_stub.c ├── test_spin_thread_e.c ├── test_spin_thread_s.c ├── test_string_helpers.c ├── test_thread_tasks.c ├── test_time.c ├── test_token.c ├── test_token_stub.c ├── test_upstream.c ├── test_upstream_sock.c └── webpa-rs256.pem /.github/scripts/get_sonarcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.github/scripts/get_sonarcloud.sh -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.sonar-project.properties -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/README.md -------------------------------------------------------------------------------- /patches/nanomsg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/patches/nanomsg.patch -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ParodusInternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/ParodusInternal.c -------------------------------------------------------------------------------- /src/ParodusInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/ParodusInternal.h -------------------------------------------------------------------------------- /src/auth_token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/auth_token.c -------------------------------------------------------------------------------- /src/auth_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/auth_token.h -------------------------------------------------------------------------------- /src/client_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/client_list.c -------------------------------------------------------------------------------- /src/client_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/client_list.h -------------------------------------------------------------------------------- /src/close_retry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/close_retry.c -------------------------------------------------------------------------------- /src/close_retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/close_retry.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/config.h -------------------------------------------------------------------------------- /src/conn_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/conn_interface.c -------------------------------------------------------------------------------- /src/conn_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/conn_interface.h -------------------------------------------------------------------------------- /src/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/connection.c -------------------------------------------------------------------------------- /src/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/connection.h -------------------------------------------------------------------------------- /src/crud_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/crud_interface.c -------------------------------------------------------------------------------- /src/crud_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/crud_interface.h -------------------------------------------------------------------------------- /src/crud_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/crud_internal.c -------------------------------------------------------------------------------- /src/crud_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/crud_internal.h -------------------------------------------------------------------------------- /src/crud_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/crud_tasks.c -------------------------------------------------------------------------------- /src/crud_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/crud_tasks.h -------------------------------------------------------------------------------- /src/downstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/downstream.c -------------------------------------------------------------------------------- /src/downstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/downstream.h -------------------------------------------------------------------------------- /src/event_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/event_handler.c -------------------------------------------------------------------------------- /src/event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/event_handler.h -------------------------------------------------------------------------------- /src/heartBeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/heartBeat.c -------------------------------------------------------------------------------- /src/heartBeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/heartBeat.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/mutex.c -------------------------------------------------------------------------------- /src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/mutex.h -------------------------------------------------------------------------------- /src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/networking.c -------------------------------------------------------------------------------- /src/nopoll_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/nopoll_handlers.c -------------------------------------------------------------------------------- /src/nopoll_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/nopoll_handlers.h -------------------------------------------------------------------------------- /src/nopoll_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/nopoll_helpers.c -------------------------------------------------------------------------------- /src/nopoll_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/nopoll_helpers.h -------------------------------------------------------------------------------- /src/parodus_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/parodus_log.h -------------------------------------------------------------------------------- /src/partners_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/partners_check.c -------------------------------------------------------------------------------- /src/partners_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/partners_check.h -------------------------------------------------------------------------------- /src/privilege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/privilege.c -------------------------------------------------------------------------------- /src/privilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/privilege.h -------------------------------------------------------------------------------- /src/service_alive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/service_alive.c -------------------------------------------------------------------------------- /src/service_alive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/service_alive.h -------------------------------------------------------------------------------- /src/seshat_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/seshat_interface.c -------------------------------------------------------------------------------- /src/seshat_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/seshat_interface.h -------------------------------------------------------------------------------- /src/seshat_interface_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/seshat_interface_stub.c -------------------------------------------------------------------------------- /src/spin_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/spin_thread.c -------------------------------------------------------------------------------- /src/spin_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/spin_thread.h -------------------------------------------------------------------------------- /src/string_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/string_helpers.c -------------------------------------------------------------------------------- /src/thread_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/thread_tasks.c -------------------------------------------------------------------------------- /src/thread_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/thread_tasks.h -------------------------------------------------------------------------------- /src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/time.c -------------------------------------------------------------------------------- /src/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/time.h -------------------------------------------------------------------------------- /src/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/token.c -------------------------------------------------------------------------------- /src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/token.h -------------------------------------------------------------------------------- /src/token_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/token_stub.c -------------------------------------------------------------------------------- /src/upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/upstream.c -------------------------------------------------------------------------------- /src/upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/src/upstream.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/curl_parodus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/curl_parodus.py -------------------------------------------------------------------------------- /tests/key4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/key4.pem -------------------------------------------------------------------------------- /tests/mock_event_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/mock_event_handler.c -------------------------------------------------------------------------------- /tests/parodus_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/parodus_cmd.sh -------------------------------------------------------------------------------- /tests/pubkey4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/pubkey4.pem -------------------------------------------------------------------------------- /tests/return_failure.bsh: -------------------------------------------------------------------------------- 1 | echo -n FAILURE 2 | -------------------------------------------------------------------------------- /tests/return_ser_mac.bsh: -------------------------------------------------------------------------------- 1 | echo -n SER_MAC $1 $2 2 | -------------------------------------------------------------------------------- /tests/return_success.bsh: -------------------------------------------------------------------------------- 1 | echo -n SUCCESS 2 | -------------------------------------------------------------------------------- /tests/rq3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/rq3.txt -------------------------------------------------------------------------------- /tests/simple_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/simple_connection.c -------------------------------------------------------------------------------- /tests/test_ParodusInternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_ParodusInternal.c -------------------------------------------------------------------------------- /tests/test_auth_token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_auth_token.c -------------------------------------------------------------------------------- /tests/test_auth_token_more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_auth_token_more.c -------------------------------------------------------------------------------- /tests/test_client_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_client_list.c -------------------------------------------------------------------------------- /tests/test_close_retry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_close_retry.c -------------------------------------------------------------------------------- /tests/test_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_config.c -------------------------------------------------------------------------------- /tests/test_conn_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_conn_interface.c -------------------------------------------------------------------------------- /tests/test_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_connection.c -------------------------------------------------------------------------------- /tests/test_createConnection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_createConnection.c -------------------------------------------------------------------------------- /tests/test_crud_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_crud_interface.c -------------------------------------------------------------------------------- /tests/test_crud_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_crud_internal.c -------------------------------------------------------------------------------- /tests/test_crud_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_crud_tasks.c -------------------------------------------------------------------------------- /tests/test_downstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_downstream.c -------------------------------------------------------------------------------- /tests/test_downstream_more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_downstream_more.c -------------------------------------------------------------------------------- /tests/test_heartBeatTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_heartBeatTimer.c -------------------------------------------------------------------------------- /tests/test_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_mutex.c -------------------------------------------------------------------------------- /tests/test_networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_networking.c -------------------------------------------------------------------------------- /tests/test_nopoll_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_nopoll_handlers.c -------------------------------------------------------------------------------- /tests/test_nopoll_handlers_fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_nopoll_handlers_fragment.c -------------------------------------------------------------------------------- /tests/test_nopoll_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_nopoll_helpers.c -------------------------------------------------------------------------------- /tests/test_partners_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_partners_check.c -------------------------------------------------------------------------------- /tests/test_service_alive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_service_alive.c -------------------------------------------------------------------------------- /tests/test_seshat_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_seshat_interface.c -------------------------------------------------------------------------------- /tests/test_seshat_interface_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_seshat_interface_stub.c -------------------------------------------------------------------------------- /tests/test_spin_thread_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_spin_thread_e.c -------------------------------------------------------------------------------- /tests/test_spin_thread_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_spin_thread_s.c -------------------------------------------------------------------------------- /tests/test_string_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_string_helpers.c -------------------------------------------------------------------------------- /tests/test_thread_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_thread_tasks.c -------------------------------------------------------------------------------- /tests/test_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_time.c -------------------------------------------------------------------------------- /tests/test_token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_token.c -------------------------------------------------------------------------------- /tests/test_token_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_token_stub.c -------------------------------------------------------------------------------- /tests/test_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_upstream.c -------------------------------------------------------------------------------- /tests/test_upstream_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/test_upstream_sock.c -------------------------------------------------------------------------------- /tests/webpa-rs256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmidt-org/parodus/HEAD/tests/webpa-rs256.pem --------------------------------------------------------------------------------