├── .clang-format ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── reinstall-cmake.sh ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── cifuzz.yml │ └── codeql-analysis.yml ├── .gitignore ├── .gitmodules ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog.md ├── LICENSE ├── README.md ├── THANKS ├── cmake ├── COPYING-CMAKE-SCRIPTS ├── FindPOPT.cmake ├── FindXMLTO.cmake ├── VersionFunctions.cmake ├── config.h.in └── rabbitmq-c-config.cmake.in ├── coverity └── model.c ├── docs └── Doxyfile.in ├── examples ├── CMakeLists.txt ├── amqp_bind.c ├── amqp_confirm_select.c ├── amqp_connect_timeout.c ├── amqp_consumer.c ├── amqp_exchange_declare.c ├── amqp_listen.c ├── amqp_listenq.c ├── amqp_producer.c ├── amqp_rpc_sendstring_client.c ├── amqp_sendstring.c ├── amqp_ssl_connect.c ├── amqp_unbind.c ├── unix │ └── platform_utils.c ├── utils.c ├── utils.h └── win32 │ └── platform_utils.c ├── fuzz ├── CMakeLists.txt ├── README.md ├── fuzz_server.c ├── fuzz_table.c ├── fuzz_url.c └── input │ ├── fuzz_server.raw │ ├── fuzz_table.raw │ └── fuzz_url.raw ├── include ├── amqp.h ├── amqp_framing.h ├── amqp_ssl_socket.h ├── amqp_tcp_socket.h └── rabbitmq-c │ ├── amqp.h │ ├── framing.h │ ├── ssl_socket.h │ └── tcp_socket.h ├── librabbitmq.pc.in ├── librabbitmq ├── CMakeLists.txt ├── amqp_api.c ├── amqp_connection.c ├── amqp_consumer.c ├── amqp_framing.c ├── amqp_mem.c ├── amqp_openssl.c ├── amqp_openssl_bio.c ├── amqp_openssl_bio.h ├── amqp_private.h ├── amqp_socket.c ├── amqp_socket.h ├── amqp_table.c ├── amqp_table.h ├── amqp_tcp_socket.c ├── amqp_time.c ├── amqp_time.h ├── amqp_url.c ├── codegen.py ├── unix │ └── threads.h └── win32 │ ├── threads.c │ └── threads.h ├── regenerate_framing.sh ├── tests ├── CMakeLists.txt ├── test_basic.c ├── test_merge_capabilities.c ├── test_parse_url.c ├── test_sasl_mechanism.c ├── test_status_enum.c ├── test_tables.c └── test_tables.expected ├── tools ├── CMakeLists.txt ├── common.c ├── common.h ├── consume.c ├── declare_queue.c ├── delete_queue.c ├── doc │ ├── amqp-consume.xml │ ├── amqp-declare-queue.xml │ ├── amqp-delete-queue.xml │ ├── amqp-get.xml │ ├── amqp-publish.xml │ └── librabbitmq-tools.xml ├── get.c ├── publish.c ├── unix │ ├── process.c │ └── process.h └── win32 │ ├── compat.c │ ├── compat.h │ ├── process.c │ └── process.h ├── travis.sh └── travis └── clang-format.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.clang-format -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/reinstall-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.devcontainer/reinstall-cmake.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cifuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.github/workflows/cifuzz.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/THANKS -------------------------------------------------------------------------------- /cmake/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/cmake/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/FindPOPT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/cmake/FindPOPT.cmake -------------------------------------------------------------------------------- /cmake/FindXMLTO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/cmake/FindXMLTO.cmake -------------------------------------------------------------------------------- /cmake/VersionFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/cmake/VersionFunctions.cmake -------------------------------------------------------------------------------- /cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/cmake/config.h.in -------------------------------------------------------------------------------- /cmake/rabbitmq-c-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/cmake/rabbitmq-c-config.cmake.in -------------------------------------------------------------------------------- /coverity/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/coverity/model.c -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/amqp_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_bind.c -------------------------------------------------------------------------------- /examples/amqp_confirm_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_confirm_select.c -------------------------------------------------------------------------------- /examples/amqp_connect_timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_connect_timeout.c -------------------------------------------------------------------------------- /examples/amqp_consumer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_consumer.c -------------------------------------------------------------------------------- /examples/amqp_exchange_declare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_exchange_declare.c -------------------------------------------------------------------------------- /examples/amqp_listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_listen.c -------------------------------------------------------------------------------- /examples/amqp_listenq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_listenq.c -------------------------------------------------------------------------------- /examples/amqp_producer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_producer.c -------------------------------------------------------------------------------- /examples/amqp_rpc_sendstring_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_rpc_sendstring_client.c -------------------------------------------------------------------------------- /examples/amqp_sendstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_sendstring.c -------------------------------------------------------------------------------- /examples/amqp_ssl_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_ssl_connect.c -------------------------------------------------------------------------------- /examples/amqp_unbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/amqp_unbind.c -------------------------------------------------------------------------------- /examples/unix/platform_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/unix/platform_utils.c -------------------------------------------------------------------------------- /examples/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/utils.c -------------------------------------------------------------------------------- /examples/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/utils.h -------------------------------------------------------------------------------- /examples/win32/platform_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/examples/win32/platform_utils.c -------------------------------------------------------------------------------- /fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/README.md -------------------------------------------------------------------------------- /fuzz/fuzz_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/fuzz_server.c -------------------------------------------------------------------------------- /fuzz/fuzz_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/fuzz_table.c -------------------------------------------------------------------------------- /fuzz/fuzz_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/fuzz_url.c -------------------------------------------------------------------------------- /fuzz/input/fuzz_server.raw: -------------------------------------------------------------------------------- 1 | AMQP  -------------------------------------------------------------------------------- /fuzz/input/fuzz_table.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/input/fuzz_table.raw -------------------------------------------------------------------------------- /fuzz/input/fuzz_url.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/fuzz/input/fuzz_url.raw -------------------------------------------------------------------------------- /include/amqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/amqp.h -------------------------------------------------------------------------------- /include/amqp_framing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/amqp_framing.h -------------------------------------------------------------------------------- /include/amqp_ssl_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/amqp_ssl_socket.h -------------------------------------------------------------------------------- /include/amqp_tcp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/amqp_tcp_socket.h -------------------------------------------------------------------------------- /include/rabbitmq-c/amqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/rabbitmq-c/amqp.h -------------------------------------------------------------------------------- /include/rabbitmq-c/framing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/rabbitmq-c/framing.h -------------------------------------------------------------------------------- /include/rabbitmq-c/ssl_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/rabbitmq-c/ssl_socket.h -------------------------------------------------------------------------------- /include/rabbitmq-c/tcp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/include/rabbitmq-c/tcp_socket.h -------------------------------------------------------------------------------- /librabbitmq.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq.pc.in -------------------------------------------------------------------------------- /librabbitmq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/CMakeLists.txt -------------------------------------------------------------------------------- /librabbitmq/amqp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_api.c -------------------------------------------------------------------------------- /librabbitmq/amqp_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_connection.c -------------------------------------------------------------------------------- /librabbitmq/amqp_consumer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_consumer.c -------------------------------------------------------------------------------- /librabbitmq/amqp_framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_framing.c -------------------------------------------------------------------------------- /librabbitmq/amqp_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_mem.c -------------------------------------------------------------------------------- /librabbitmq/amqp_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_openssl.c -------------------------------------------------------------------------------- /librabbitmq/amqp_openssl_bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_openssl_bio.c -------------------------------------------------------------------------------- /librabbitmq/amqp_openssl_bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_openssl_bio.h -------------------------------------------------------------------------------- /librabbitmq/amqp_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_private.h -------------------------------------------------------------------------------- /librabbitmq/amqp_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_socket.c -------------------------------------------------------------------------------- /librabbitmq/amqp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_socket.h -------------------------------------------------------------------------------- /librabbitmq/amqp_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_table.c -------------------------------------------------------------------------------- /librabbitmq/amqp_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_table.h -------------------------------------------------------------------------------- /librabbitmq/amqp_tcp_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_tcp_socket.c -------------------------------------------------------------------------------- /librabbitmq/amqp_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_time.c -------------------------------------------------------------------------------- /librabbitmq/amqp_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_time.h -------------------------------------------------------------------------------- /librabbitmq/amqp_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/amqp_url.c -------------------------------------------------------------------------------- /librabbitmq/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/codegen.py -------------------------------------------------------------------------------- /librabbitmq/unix/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/unix/threads.h -------------------------------------------------------------------------------- /librabbitmq/win32/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/win32/threads.c -------------------------------------------------------------------------------- /librabbitmq/win32/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/librabbitmq/win32/threads.h -------------------------------------------------------------------------------- /regenerate_framing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/regenerate_framing.sh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_basic.c -------------------------------------------------------------------------------- /tests/test_merge_capabilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_merge_capabilities.c -------------------------------------------------------------------------------- /tests/test_parse_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_parse_url.c -------------------------------------------------------------------------------- /tests/test_sasl_mechanism.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_sasl_mechanism.c -------------------------------------------------------------------------------- /tests/test_status_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_status_enum.c -------------------------------------------------------------------------------- /tests/test_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_tables.c -------------------------------------------------------------------------------- /tests/test_tables.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tests/test_tables.expected -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/common.c -------------------------------------------------------------------------------- /tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/common.h -------------------------------------------------------------------------------- /tools/consume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/consume.c -------------------------------------------------------------------------------- /tools/declare_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/declare_queue.c -------------------------------------------------------------------------------- /tools/delete_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/delete_queue.c -------------------------------------------------------------------------------- /tools/doc/amqp-consume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/doc/amqp-consume.xml -------------------------------------------------------------------------------- /tools/doc/amqp-declare-queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/doc/amqp-declare-queue.xml -------------------------------------------------------------------------------- /tools/doc/amqp-delete-queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/doc/amqp-delete-queue.xml -------------------------------------------------------------------------------- /tools/doc/amqp-get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/doc/amqp-get.xml -------------------------------------------------------------------------------- /tools/doc/amqp-publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/doc/amqp-publish.xml -------------------------------------------------------------------------------- /tools/doc/librabbitmq-tools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/doc/librabbitmq-tools.xml -------------------------------------------------------------------------------- /tools/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/get.c -------------------------------------------------------------------------------- /tools/publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/publish.c -------------------------------------------------------------------------------- /tools/unix/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/unix/process.c -------------------------------------------------------------------------------- /tools/unix/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/unix/process.h -------------------------------------------------------------------------------- /tools/win32/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/win32/compat.c -------------------------------------------------------------------------------- /tools/win32/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/win32/compat.h -------------------------------------------------------------------------------- /tools/win32/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/win32/process.c -------------------------------------------------------------------------------- /tools/win32/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/tools/win32/process.h -------------------------------------------------------------------------------- /travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanxz/rabbitmq-c/HEAD/travis.sh -------------------------------------------------------------------------------- /travis/clang-format.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | exec clang-format -style=file $@ 6 | --------------------------------------------------------------------------------