rabbitmq-c-0.8.0.tarRabbitMQ是实现了高级消息队列协议(AMQP)的开源消息(亦称面向消息的中间件)。RabbitMQ服务器是用Erlang语言编写的,而集群和故障转移是构建在开放电信平台框架上的。所有主要的编程语言均有与代理接口通讯的客户端库。.
├── rabbitmq-c-0.8.0
│ ├── AUTHORS
│ ├── CMakeLists.txt
│ ├── CONTRIBUTING.md
│ ├── ChangeLog.md
│ ├── LICENSE-MIT
│ ├── Makefile.am
│ ├── README.md
│ ├── THANKS
│ ├── TODO
│ ├── appveyor.yml
│ ├── cmake
│ │ ├── CMakePushCheckState.cmake
│ │ ├── COPYING-CMAKE-SCRIPTS
│ │ ├── FindPOPT.cmake
│ │ ├── FindXmlTo.cmake
│ │ ├── GNUInstallDirs.cmake
│ │ ├── TestCInline.cmake
│ │ └── config.h.in
│ ├── codegen
│ ├── configure.ac
│ ├── coverity
│ │ └── model.c
│ ├── docs
│ │ └── Doxyfile.in
│ ├── examples
│ │ ├── CMakeLists.txt
│ │ ├── amqp_bind.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_unbind.c
│ │ ├── amqps_bind.c
│ │ ├── amqps_connect_timeout.c
│ │ ├── amqps_consumer.c
│ │ ├── amqps_exchange_declare.c
│ │ ├── amqps_listen.c
│ │ ├── amqps_listenq.c
│ │ ├── amqps_producer.c
│ │ ├── amqps_sendstring.c
│ │ ├── amqps_unbind.c
│ │ ├── unix
│ │ │ └── platform_utils.c
│ │ ├── utils.c
│ │ ├── utils.h
│ │ └── win32
│ │ └── platform_utils.c
│ ├── librabbitmq
│ │ ├── CMakeLists.txt
│ │ ├── amqp.h
│ │ ├── amqp_api.c
│ │ ├── amqp_connection.c
│ │ ├── amqp_consumer.c
│ │ ├── amqp_framing.c
│ │ ├── amqp_framing.h
│ │ ├── amqp_hostcheck.c
│ │ ├── amqp_hostcheck.h
│ │ ├── amqp_mem.c
│ │ ├── amqp_openssl.c
│ │ ├── amqp_openssl_hostname_validation.c
│ │ ├── amqp_openssl_hostname_validation.h
│ │ ├── amqp_private.h
│ │ ├── amqp_socket.c
│ │ ├── amqp_socket.h
│ │ ├── amqp_ssl_socket.h
│ │ ├── amqp_table.c
│ │ ├── amqp_table.h
│ │ ├── amqp_tcp_socket.c
│ │ ├── amqp_tcp_socket.h
│ │ ├── amqp_time.c
│ │ ├── amqp_time.h
│ │ ├── amqp_url.c
│ │ ├── codegen.py
│ │ ├── unix
│ │ │ └── threads.h
│ │ └── win32
│ │ ├── msinttypes
│ │ │ └── stdint.h
│ │ ├── threads.c
│ │ └── threads.h
│ ├── librabbitmq.pc.in
│ ├── m4
│ │ ├── ax_have_poll.m4
│ │ ├── ax_have_select.m4
│ │ ├── ax_python_module.m4
│ │ ├── cflags.m4
│ │ ├── ldflags.m4
│ │ └── popt.m4
│ ├── tests
│ │ ├── CMakeLists.txt
│ │ ├── test_hostcheck.c
│ │ ├── test_merge_capabilities.c
│ │ ├── test_parse_url.c
│ │ ├── test_sasl_mechanism.c
│ │ ├── test_status_enum.c
│ │ ├── test_tables.c
│ │ ├── test_tables.expected
│ │ └── win32
│ │ └── msinttypes
│ │ └── inttypes.h
│ ├── 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
└── 找例子网_rabbitmq-c-0.8.0.tar.gz
20 directories, 111 files
评论