Full Code of zeromq/libzmq for AI

master 7d95ac02ae1a cached
819 files
4.3 MB
1.2M tokens
2555 symbols
1 requests
Download .txt
Showing preview only (4,666K chars total). Download the full file or copy to clipboard to get everything.
Repository: zeromq/libzmq
Branch: master
Commit: 7d95ac02ae1a
Files: 819
Total size: 4.3 MB

Directory structure:
gitextract_okhb0yyr/

├── .clang-format
├── .clang-tidy
├── .git-blame-ignore-revs
├── .github/
│   ├── CONTRIBUTING.md
│   ├── issue_template.md
│   ├── stale.yml
│   └── workflows/
│       ├── CI.yaml
│       ├── Docs.yaml
│       └── Fuzzers.yaml
├── .gitignore
├── .hgeol
├── .mailmap
├── .obs/
│   └── workflows.yml
├── .readthedocs.yaml
├── .travis.yml
├── AUTHORS
├── CMakeLists.txt
├── Dockerfile
├── Doxygen.cfg
├── INSTALL
├── Jenkinsfile
├── LICENSE
├── Makefile.am
├── NEWS
├── README.cygwin.md
├── README.doxygen.md
├── README.md
├── SECURITY.md
├── SupportedPlatforms.md
├── acinclude.m4
├── appveyor.yml
├── autogen.sh
├── build_qnx/
│   ├── Makefile
│   ├── common.mk
│   ├── nto/
│   │   ├── Makefile
│   │   ├── aarch64/
│   │   │   ├── Makefile
│   │   │   └── le/
│   │   │       └── Makefile
│   │   └── x86_64/
│   │       ├── Makefile
│   │       └── o/
│   │           └── Makefile
│   └── qnx.nto.toolchain.cmake
├── builds/
│   ├── Makefile.am
│   ├── README
│   ├── abi-compliance-checker/
│   │   └── ci_build.sh
│   ├── android/
│   │   ├── Dockerfile
│   │   ├── README.md
│   │   ├── android_build_helper.sh
│   │   ├── build.sh
│   │   └── ci_build.sh
│   ├── cmake/
│   │   ├── Modules/
│   │   │   ├── ClangFormat.cmake
│   │   │   ├── FindAsciiDoctor.cmake
│   │   │   ├── FindNSS3.cmake
│   │   │   ├── Findgssapi_krb5.cmake
│   │   │   ├── Findsodium.cmake
│   │   │   ├── TestZMQVersion.cmake
│   │   │   ├── ZMQSourceRunChecks.cmake
│   │   │   └── ZMQSupportMacros.cmake
│   │   ├── NSIS.template32.in
│   │   ├── NSIS.template64.in
│   │   ├── ZeroMQConfig.cmake.in
│   │   ├── ci_build.sh
│   │   ├── clang-format-check.sh.in
│   │   └── platform.hpp.in
│   ├── coverage/
│   │   └── ci_build.sh
│   ├── cygwin/
│   │   └── Makefile.cygwin
│   ├── deprecated-msvc/
│   │   ├── .gitignore
│   │   ├── Makefile.am
│   │   ├── errno.cpp
│   │   ├── errno.hpp
│   │   ├── platform.hpp
│   │   ├── properties/
│   │   │   ├── Common.props
│   │   │   ├── DLL.props
│   │   │   ├── Debug.props
│   │   │   ├── DebugDEXE.props
│   │   │   ├── DebugDLL.props
│   │   │   ├── DebugLEXE.props
│   │   │   ├── DebugLIB.props
│   │   │   ├── DebugLTCG.props
│   │   │   ├── DebugSEXE.props
│   │   │   ├── EXE.props
│   │   │   ├── LIB.props
│   │   │   ├── LTCG.props
│   │   │   ├── Link.props
│   │   │   ├── Messages.props
│   │   │   ├── Output.props
│   │   │   ├── Release.props
│   │   │   ├── ReleaseDEXE.props
│   │   │   ├── ReleaseDLL.props
│   │   │   ├── ReleaseLEXE.props
│   │   │   ├── ReleaseLIB.props
│   │   │   ├── ReleaseLTCG.props
│   │   │   ├── ReleaseSEXE.props
│   │   │   ├── Win32.props
│   │   │   └── x64.props
│   │   ├── readme.txt
│   │   ├── resource.h
│   │   ├── resource.rc
│   │   ├── vs2008/
│   │   │   ├── inproc_lat/
│   │   │   │   └── inproc_lat.vcproj
│   │   │   ├── inproc_thr/
│   │   │   │   └── inproc_thr.vcproj
│   │   │   ├── libzmq/
│   │   │   │   └── libzmq.vcproj
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   └── local_lat.vcproj
│   │   │   ├── local_thr/
│   │   │   │   └── local_thr.vcproj
│   │   │   ├── remote_lat/
│   │   │   │   └── remote_lat.vcproj
│   │   │   └── remote_thr/
│   │   │       └── remote_thr.vcproj
│   │   ├── vs2010/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2012/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2013/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2015/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2015_xp/
│   │   │   ├── libzmq.vcxproj
│   │   │   ├── platform.hpp
│   │   │   └── test_zmq/
│   │   │       ├── test_multithread.cpp
│   │   │       └── test_zmq.vcxproj
│   │   └── vs2017/
│   │       ├── inproc_lat/
│   │       │   ├── inproc_lat.props
│   │       │   └── inproc_lat.vcxproj
│   │       ├── inproc_thr/
│   │       │   ├── inproc_thr.props
│   │       │   └── inproc_thr.vcxproj
│   │       ├── libsodium.import.props
│   │       ├── libsodium.import.xml
│   │       ├── libzmq/
│   │       │   ├── libzmq.props
│   │       │   ├── libzmq.vcxproj
│   │       │   ├── libzmq.vcxproj.filters
│   │       │   └── libzmq.xml
│   │       ├── libzmq.import.props
│   │       ├── libzmq.import.xml
│   │       ├── libzmq.sln
│   │       ├── local_lat/
│   │       │   ├── local_lat.props
│   │       │   └── local_lat.vcxproj
│   │       ├── local_thr/
│   │       │   ├── local_thr.props
│   │       │   └── local_thr.vcxproj
│   │       ├── remote_lat/
│   │       │   ├── remote_lat.props
│   │       │   └── remote_lat.vcxproj
│   │       └── remote_thr/
│   │           ├── remote_thr.props
│   │           └── remote_thr.vcxproj
│   ├── fuzz/
│   │   └── ci_build.sh
│   ├── gyp/
│   │   ├── .gitignore
│   │   ├── build.bat
│   │   ├── platform.hpp
│   │   ├── project-tests.gsl
│   │   ├── project-tests.gypi
│   │   ├── project-tests.xml
│   │   └── project.gyp
│   ├── ios/
│   │   └── build_ios.sh
│   ├── mingw32/
│   │   ├── Makefile.mingw32
│   │   └── platform.hpp
│   ├── nuget/
│   │   ├── libzmq.autopkg
│   │   └── readme.nuget
│   ├── openwrt/
│   │   └── Makefile
│   ├── qnx/
│   │   └── ToolchainQNX6.6_x86.cmake
│   ├── valgrind/
│   │   ├── ci_build.sh
│   │   ├── valgrind.supp
│   │   └── vg
│   ├── vxworks/
│   │   └── platform.hpp
│   └── zos/
│       ├── README.md
│       ├── cxxall
│       ├── makeclean
│       ├── makelibzmq
│       ├── maketests
│       ├── platform.hpp
│       ├── runtests
│       ├── test_fork.cpp
│       └── zc++
├── ci_build.sh
├── ci_deploy.sh
├── config.sh
├── configure.ac
├── doc/
│   ├── Makefile.am
│   ├── asciidoctor.css
│   ├── create_page_list.sh
│   ├── index.adoc
│   ├── zmq.adoc
│   ├── zmq_atomic_counter_dec.adoc
│   ├── zmq_atomic_counter_destroy.adoc
│   ├── zmq_atomic_counter_inc.adoc
│   ├── zmq_atomic_counter_new.adoc
│   ├── zmq_atomic_counter_set.adoc
│   ├── zmq_atomic_counter_value.adoc
│   ├── zmq_bind.adoc
│   ├── zmq_close.adoc
│   ├── zmq_connect.adoc
│   ├── zmq_connect_peer.adoc
│   ├── zmq_ctx_get.adoc
│   ├── zmq_ctx_get_ext.adoc
│   ├── zmq_ctx_new.adoc
│   ├── zmq_ctx_set.adoc
│   ├── zmq_ctx_set_ext.adoc
│   ├── zmq_ctx_shutdown.adoc
│   ├── zmq_ctx_term.adoc
│   ├── zmq_curve.adoc
│   ├── zmq_curve_keypair.adoc
│   ├── zmq_curve_public.adoc
│   ├── zmq_disconnect.adoc
│   ├── zmq_disconnect_peer.adoc
│   ├── zmq_errno.adoc
│   ├── zmq_getsockopt.adoc
│   ├── zmq_gssapi.adoc
│   ├── zmq_has.adoc
│   ├── zmq_inproc.adoc
│   ├── zmq_ipc.adoc
│   ├── zmq_msg_close.adoc
│   ├── zmq_msg_copy.adoc
│   ├── zmq_msg_data.adoc
│   ├── zmq_msg_get.adoc
│   ├── zmq_msg_gets.adoc
│   ├── zmq_msg_init.adoc
│   ├── zmq_msg_init_buffer.adoc
│   ├── zmq_msg_init_data.adoc
│   ├── zmq_msg_init_size.adoc
│   ├── zmq_msg_more.adoc
│   ├── zmq_msg_move.adoc
│   ├── zmq_msg_recv.adoc
│   ├── zmq_msg_routing_id.adoc
│   ├── zmq_msg_send.adoc
│   ├── zmq_msg_set.adoc
│   ├── zmq_msg_set_routing_id.adoc
│   ├── zmq_msg_size.adoc
│   ├── zmq_null.adoc
│   ├── zmq_pgm.adoc
│   ├── zmq_plain.adoc
│   ├── zmq_poll.adoc
│   ├── zmq_poller.adoc
│   ├── zmq_ppoll.adoc
│   ├── zmq_proxy.adoc
│   ├── zmq_proxy_steerable.adoc
│   ├── zmq_recv.adoc
│   ├── zmq_recvmsg.adoc
│   ├── zmq_send.adoc
│   ├── zmq_send_const.adoc
│   ├── zmq_sendmsg.adoc
│   ├── zmq_setsockopt.adoc
│   ├── zmq_socket.adoc
│   ├── zmq_socket_monitor.adoc
│   ├── zmq_socket_monitor_versioned.adoc
│   ├── zmq_strerror.adoc
│   ├── zmq_tcp.adoc
│   ├── zmq_timers.adoc
│   ├── zmq_tipc.adoc
│   ├── zmq_udp.adoc
│   ├── zmq_unbind.adoc
│   ├── zmq_version.adoc
│   ├── zmq_vmci.adoc
│   ├── zmq_vsock.adoc
│   ├── zmq_z85_decode.adoc
│   └── zmq_z85_encode.adoc
├── external/
│   ├── sha1/
│   │   ├── license.txt
│   │   ├── sha1.c
│   │   └── sha1.h
│   ├── unity/
│   │   ├── license.txt
│   │   ├── unity.c
│   │   ├── unity.h
│   │   ├── unity_internals.h
│   │   └── version.txt
│   └── wepoll/
│       ├── README.md
│       ├── license.txt
│       ├── version.txt
│       ├── wepoll.c
│       └── wepoll.h
├── include/
│   ├── zmq.h
│   └── zmq_utils.h
├── m4/
│   ├── ax_check_compile_flag.m4
│   ├── ax_check_vscript.m4
│   ├── ax_code_coverage.m4
│   ├── ax_cxx_compile_stdcxx.m4
│   ├── ax_cxx_compile_stdcxx_11.m4
│   ├── ax_func_posix_memalign.m4
│   └── ax_valgrind_check.m4
├── packaging/
│   ├── README
│   ├── debian/
│   │   ├── changelog
│   │   ├── compat
│   │   ├── control
│   │   ├── copyright
│   │   ├── libzmq3-dev.install
│   │   ├── libzmq3-dev.manpages
│   │   ├── libzmq5.docs
│   │   ├── libzmq5.install
│   │   ├── rules
│   │   ├── source/
│   │   │   └── format
│   │   └── zeromq.dsc
│   ├── nuget/
│   │   ├── package.bat
│   │   ├── package.config
│   │   ├── package.gsl
│   │   ├── package.nuspec
│   │   ├── package.targets
│   │   └── package.xml
│   ├── obs/
│   │   └── _service
│   └── redhat/
│       └── zeromq.spec
├── perf/
│   ├── benchmark_radix_tree.cpp
│   ├── generate_csv.sh
│   ├── generate_graphs.py
│   ├── inproc_lat.cpp
│   ├── inproc_thr.cpp
│   ├── local_lat.cpp
│   ├── local_thr.cpp
│   ├── proxy_thr.cpp
│   ├── remote_lat.cpp
│   └── remote_thr.cpp
├── src/
│   ├── address.cpp
│   ├── address.hpp
│   ├── array.hpp
│   ├── atomic_counter.hpp
│   ├── atomic_ptr.hpp
│   ├── blob.hpp
│   ├── channel.cpp
│   ├── channel.hpp
│   ├── client.cpp
│   ├── client.hpp
│   ├── clock.cpp
│   ├── clock.hpp
│   ├── command.hpp
│   ├── compat.hpp
│   ├── condition_variable.hpp
│   ├── config.hpp
│   ├── ctx.cpp
│   ├── ctx.hpp
│   ├── curve_client.cpp
│   ├── curve_client.hpp
│   ├── curve_client_tools.hpp
│   ├── curve_mechanism_base.cpp
│   ├── curve_mechanism_base.hpp
│   ├── curve_server.cpp
│   ├── curve_server.hpp
│   ├── dbuffer.hpp
│   ├── dealer.cpp
│   ├── dealer.hpp
│   ├── decoder.hpp
│   ├── decoder_allocators.cpp
│   ├── decoder_allocators.hpp
│   ├── devpoll.cpp
│   ├── devpoll.hpp
│   ├── dgram.cpp
│   ├── dgram.hpp
│   ├── dish.cpp
│   ├── dish.hpp
│   ├── dist.cpp
│   ├── dist.hpp
│   ├── encoder.hpp
│   ├── endpoint.cpp
│   ├── endpoint.hpp
│   ├── epoll.cpp
│   ├── epoll.hpp
│   ├── err.cpp
│   ├── err.hpp
│   ├── fd.hpp
│   ├── fq.cpp
│   ├── fq.hpp
│   ├── gather.cpp
│   ├── gather.hpp
│   ├── generic_mtrie.hpp
│   ├── generic_mtrie_impl.hpp
│   ├── gssapi_client.cpp
│   ├── gssapi_client.hpp
│   ├── gssapi_mechanism_base.cpp
│   ├── gssapi_mechanism_base.hpp
│   ├── gssapi_server.cpp
│   ├── gssapi_server.hpp
│   ├── i_decoder.hpp
│   ├── i_encoder.hpp
│   ├── i_engine.hpp
│   ├── i_mailbox.hpp
│   ├── i_poll_events.hpp
│   ├── io_object.cpp
│   ├── io_object.hpp
│   ├── io_thread.cpp
│   ├── io_thread.hpp
│   ├── ip.cpp
│   ├── ip.hpp
│   ├── ip_resolver.cpp
│   ├── ip_resolver.hpp
│   ├── ipc_address.cpp
│   ├── ipc_address.hpp
│   ├── ipc_connecter.cpp
│   ├── ipc_connecter.hpp
│   ├── ipc_listener.cpp
│   ├── ipc_listener.hpp
│   ├── kqueue.cpp
│   ├── kqueue.hpp
│   ├── lb.cpp
│   ├── lb.hpp
│   ├── libzmq.pc.in
│   ├── libzmq.vers
│   ├── likely.hpp
│   ├── macros.hpp
│   ├── mailbox.cpp
│   ├── mailbox.hpp
│   ├── mailbox_safe.cpp
│   ├── mailbox_safe.hpp
│   ├── mechanism.cpp
│   ├── mechanism.hpp
│   ├── mechanism_base.cpp
│   ├── mechanism_base.hpp
│   ├── metadata.cpp
│   ├── metadata.hpp
│   ├── msg.cpp
│   ├── msg.hpp
│   ├── mtrie.cpp
│   ├── mtrie.hpp
│   ├── mutex.hpp
│   ├── norm_engine.cpp
│   ├── norm_engine.hpp
│   ├── null_mechanism.cpp
│   ├── null_mechanism.hpp
│   ├── object.cpp
│   ├── object.hpp
│   ├── options.cpp
│   ├── options.hpp
│   ├── own.cpp
│   ├── own.hpp
│   ├── pair.cpp
│   ├── pair.hpp
│   ├── peer.cpp
│   ├── peer.hpp
│   ├── pgm_receiver.cpp
│   ├── pgm_receiver.hpp
│   ├── pgm_sender.cpp
│   ├── pgm_sender.hpp
│   ├── pgm_socket.cpp
│   ├── pgm_socket.hpp
│   ├── pipe.cpp
│   ├── pipe.hpp
│   ├── plain_client.cpp
│   ├── plain_client.hpp
│   ├── plain_common.hpp
│   ├── plain_server.cpp
│   ├── plain_server.hpp
│   ├── poll.cpp
│   ├── poll.hpp
│   ├── poller.hpp
│   ├── poller_base.cpp
│   ├── poller_base.hpp
│   ├── polling_util.cpp
│   ├── polling_util.hpp
│   ├── pollset.cpp
│   ├── pollset.hpp
│   ├── precompiled.cpp
│   ├── precompiled.hpp
│   ├── proxy.cpp
│   ├── proxy.hpp
│   ├── pub.cpp
│   ├── pub.hpp
│   ├── pull.cpp
│   ├── pull.hpp
│   ├── push.cpp
│   ├── push.hpp
│   ├── radio.cpp
│   ├── radio.hpp
│   ├── radix_tree.cpp
│   ├── radix_tree.hpp
│   ├── random.cpp
│   ├── random.hpp
│   ├── raw_decoder.cpp
│   ├── raw_decoder.hpp
│   ├── raw_encoder.cpp
│   ├── raw_encoder.hpp
│   ├── raw_engine.cpp
│   ├── raw_engine.hpp
│   ├── reaper.cpp
│   ├── reaper.hpp
│   ├── rep.cpp
│   ├── rep.hpp
│   ├── req.cpp
│   ├── req.hpp
│   ├── router.cpp
│   ├── router.hpp
│   ├── scatter.cpp
│   ├── scatter.hpp
│   ├── secure_allocator.hpp
│   ├── select.cpp
│   ├── select.hpp
│   ├── server.cpp
│   ├── server.hpp
│   ├── session_base.cpp
│   ├── session_base.hpp
│   ├── signaler.cpp
│   ├── signaler.hpp
│   ├── socket_base.cpp
│   ├── socket_base.hpp
│   ├── socket_poller.cpp
│   ├── socket_poller.hpp
│   ├── socks.cpp
│   ├── socks.hpp
│   ├── socks_connecter.cpp
│   ├── socks_connecter.hpp
│   ├── stdint.hpp
│   ├── stream.cpp
│   ├── stream.hpp
│   ├── stream_connecter_base.cpp
│   ├── stream_connecter_base.hpp
│   ├── stream_engine_base.cpp
│   ├── stream_engine_base.hpp
│   ├── stream_listener_base.cpp
│   ├── stream_listener_base.hpp
│   ├── sub.cpp
│   ├── sub.hpp
│   ├── tcp.cpp
│   ├── tcp.hpp
│   ├── tcp_address.cpp
│   ├── tcp_address.hpp
│   ├── tcp_connecter.cpp
│   ├── tcp_connecter.hpp
│   ├── tcp_listener.cpp
│   ├── tcp_listener.hpp
│   ├── thread.cpp
│   ├── thread.hpp
│   ├── timers.cpp
│   ├── timers.hpp
│   ├── tipc_address.cpp
│   ├── tipc_address.hpp
│   ├── tipc_connecter.cpp
│   ├── tipc_connecter.hpp
│   ├── tipc_listener.cpp
│   ├── tipc_listener.hpp
│   ├── trie.cpp
│   ├── trie.hpp
│   ├── udp_address.cpp
│   ├── udp_address.hpp
│   ├── udp_engine.cpp
│   ├── udp_engine.hpp
│   ├── v1_decoder.cpp
│   ├── v1_decoder.hpp
│   ├── v1_encoder.cpp
│   ├── v1_encoder.hpp
│   ├── v2_decoder.cpp
│   ├── v2_decoder.hpp
│   ├── v2_encoder.cpp
│   ├── v2_encoder.hpp
│   ├── v2_protocol.hpp
│   ├── v3_1_encoder.cpp
│   ├── v3_1_encoder.hpp
│   ├── version.rc.in
│   ├── vmci.cpp
│   ├── vmci.hpp
│   ├── vmci_address.cpp
│   ├── vmci_address.hpp
│   ├── vmci_connecter.cpp
│   ├── vmci_connecter.hpp
│   ├── vmci_listener.cpp
│   ├── vmci_listener.hpp
│   ├── vsock_address.cpp
│   ├── vsock_address.hpp
│   ├── vsock_connecter.cpp
│   ├── vsock_connecter.hpp
│   ├── vsock_listener.cpp
│   ├── vsock_listener.hpp
│   ├── windows.hpp
│   ├── wire.hpp
│   ├── ws_address.cpp
│   ├── ws_address.hpp
│   ├── ws_connecter.cpp
│   ├── ws_connecter.hpp
│   ├── ws_decoder.cpp
│   ├── ws_decoder.hpp
│   ├── ws_encoder.cpp
│   ├── ws_encoder.hpp
│   ├── ws_engine.cpp
│   ├── ws_engine.hpp
│   ├── ws_listener.cpp
│   ├── ws_listener.hpp
│   ├── ws_protocol.hpp
│   ├── wss_address.cpp
│   ├── wss_address.hpp
│   ├── wss_engine.cpp
│   ├── wss_engine.hpp
│   ├── xpub.cpp
│   ├── xpub.hpp
│   ├── xsub.cpp
│   ├── xsub.hpp
│   ├── ypipe.hpp
│   ├── ypipe_base.hpp
│   ├── ypipe_conflate.hpp
│   ├── yqueue.hpp
│   ├── zap_client.cpp
│   ├── zap_client.hpp
│   ├── zmq.cpp
│   ├── zmq_draft.h
│   ├── zmq_utils.cpp
│   ├── zmtp_engine.cpp
│   └── zmtp_engine.hpp
├── tests/
│   ├── CMakeLists.txt
│   ├── README.md
│   ├── test_abstract_ipc.cpp
│   ├── test_address_tipc.cpp
│   ├── test_ancillaries.cpp
│   ├── test_app_meta.cpp
│   ├── test_atomics.cpp
│   ├── test_base85.cpp
│   ├── test_bind_after_connect_tcp.cpp
│   ├── test_bind_curve_fuzzer.cpp
│   ├── test_bind_fuzzer.cpp
│   ├── test_bind_null_fuzzer.cpp
│   ├── test_bind_src_address.cpp
│   ├── test_bind_stream_fuzzer.cpp
│   ├── test_bind_ws_fuzzer.cpp
│   ├── test_busy_poll.cpp
│   ├── test_capabilities.cpp
│   ├── test_channel.cpp
│   ├── test_client_server.cpp
│   ├── test_conflate.cpp
│   ├── test_connect_curve_fuzzer.cpp
│   ├── test_connect_delay_tipc.cpp
│   ├── test_connect_fuzzer.cpp
│   ├── test_connect_null_fuzzer.cpp
│   ├── test_connect_resolve.cpp
│   ├── test_connect_rid.cpp
│   ├── test_connect_stream_fuzzer.cpp
│   ├── test_connect_ws_fuzzer.cpp
│   ├── test_ctx_destroy.cpp
│   ├── test_ctx_options.cpp
│   ├── test_dgram.cpp
│   ├── test_diffserv.cpp
│   ├── test_disconnect_inproc.cpp
│   ├── test_disconnect_msg.cpp
│   ├── test_filter_ipc.cpp
│   ├── test_fork.cpp
│   ├── test_getsockopt_memset.cpp
│   ├── test_heartbeats.cpp
│   ├── test_hello_msg.cpp
│   ├── test_hiccup_msg.cpp
│   ├── test_hwm.cpp
│   ├── test_hwm_pubsub.cpp
│   ├── test_immediate.cpp
│   ├── test_inproc_connect.cpp
│   ├── test_invalid_rep.cpp
│   ├── test_iov.cpp
│   ├── test_ipc_wildcard.cpp
│   ├── test_issue_566.cpp
│   ├── test_last_endpoint.cpp
│   ├── test_many_sockets.cpp
│   ├── test_metadata.cpp
│   ├── test_mock_pub_sub.cpp
│   ├── test_monitor.cpp
│   ├── test_msg_ffn.cpp
│   ├── test_msg_flags.cpp
│   ├── test_msg_init.cpp
│   ├── test_pair_inproc.cpp
│   ├── test_pair_ipc.cpp
│   ├── test_pair_tcp.cpp
│   ├── test_pair_tcp_cap_net_admin.cpp
│   ├── test_pair_tipc.cpp
│   ├── test_pair_vmci.cpp
│   ├── test_pair_vsock.cpp
│   ├── test_peer.cpp
│   ├── test_peer_disconnect.cpp
│   ├── test_poller.cpp
│   ├── test_probe_router.cpp
│   ├── test_proxy.cpp
│   ├── test_proxy_hwm.cpp
│   ├── test_proxy_single_socket.cpp
│   ├── test_proxy_steerable.cpp
│   ├── test_proxy_terminate.cpp
│   ├── test_pub_invert_matching.cpp
│   ├── test_pubsub.cpp
│   ├── test_pubsub_topics_count.cpp
│   ├── test_radio_dish.cpp
│   ├── test_rebind_ipc.cpp
│   ├── test_reconnect_ivl.cpp
│   ├── test_reconnect_options.cpp
│   ├── test_req_correlate.cpp
│   ├── test_req_relaxed.cpp
│   ├── test_reqrep_device.cpp
│   ├── test_reqrep_device_tipc.cpp
│   ├── test_reqrep_inproc.cpp
│   ├── test_reqrep_ipc.cpp
│   ├── test_reqrep_tcp.cpp
│   ├── test_reqrep_tipc.cpp
│   ├── test_reqrep_vmci.cpp
│   ├── test_reqrep_vsock.cpp
│   ├── test_router_handover.cpp
│   ├── test_router_mandatory.cpp
│   ├── test_router_mandatory_hwm.cpp
│   ├── test_router_mandatory_tipc.cpp
│   ├── test_router_notify.cpp
│   ├── test_scatter_gather.cpp
│   ├── test_security_curve.cpp
│   ├── test_security_gssapi.cpp
│   ├── test_security_no_zap_handler.cpp
│   ├── test_security_null.cpp
│   ├── test_security_plain.cpp
│   ├── test_security_zap.cpp
│   ├── test_setsockopt.cpp
│   ├── test_shutdown_stress.cpp
│   ├── test_shutdown_stress_tipc.cpp
│   ├── test_socket_null.cpp
│   ├── test_socket_options_fuzzer.cpp
│   ├── test_sockopt_hwm.cpp
│   ├── test_socks.cpp
│   ├── test_sodium.cpp
│   ├── test_spec_dealer.cpp
│   ├── test_spec_pushpull.cpp
│   ├── test_spec_rep.cpp
│   ├── test_spec_req.cpp
│   ├── test_spec_router.cpp
│   ├── test_srcfd.cpp
│   ├── test_stream.cpp
│   ├── test_stream_disconnect.cpp
│   ├── test_stream_empty.cpp
│   ├── test_stream_exceeds_buffer.cpp
│   ├── test_stream_timeout.cpp
│   ├── test_sub_forward.cpp
│   ├── test_sub_forward_tipc.cpp
│   ├── test_system.cpp
│   ├── test_tcp_accept_filter.cpp
│   ├── test_term_endpoint.cpp
│   ├── test_term_endpoint_tipc.cpp
│   ├── test_thread_safe.cpp
│   ├── test_timeo.cpp
│   ├── test_timers.cpp
│   ├── test_unbind_wildcard.cpp
│   ├── test_use_fd.cpp
│   ├── test_ws_transport.cpp
│   ├── test_wss_transport.cpp
│   ├── test_xpub_manual.cpp
│   ├── test_xpub_manual_last_value.cpp
│   ├── test_xpub_nodrop.cpp
│   ├── test_xpub_topic.cpp
│   ├── test_xpub_verbose.cpp
│   ├── test_xpub_welcome_msg.cpp
│   ├── test_xsub_verbose.cpp
│   ├── test_z85_decode_fuzzer.cpp
│   ├── test_zmq_poll_fd.cpp
│   ├── test_zmq_ppoll_fd.cpp
│   ├── test_zmq_ppoll_signals.cpp
│   ├── testutil.cpp
│   ├── testutil.hpp
│   ├── testutil_monitoring.cpp
│   ├── testutil_monitoring.hpp
│   ├── testutil_security.cpp
│   ├── testutil_security.hpp
│   ├── testutil_unity.cpp
│   └── testutil_unity.hpp
├── tools/
│   └── curve_keygen.cpp
├── unittests/
│   ├── CMakeLists.txt
│   ├── unittest_curve_encoding.cpp
│   ├── unittest_ip_resolver.cpp
│   ├── unittest_mtrie.cpp
│   ├── unittest_poller.cpp
│   ├── unittest_radix_tree.cpp
│   ├── unittest_resolver_common.hpp
│   ├── unittest_udp_address.cpp
│   └── unittest_ypipe.cpp
└── version.sh

================================================
FILE CONTENTS
================================================

================================================
FILE: .clang-format
================================================
BasedOnStyle: LLVM
IndentWidth: 4
UseTab: Never
BreakBeforeBraces: Custom
BraceWrapping: 
    AfterClass: true
    AfterControlStatement: false
    AfterEnum: true 
    AfterFunction: true 
    AfterNamespace: true
    AfterObjCDeclaration: true 
    AfterStruct: true 
    AfterUnion: true 
    BeforeCatch: true 
    BeforeElse: false 
    IndentBraces: false

AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: true
BinPackArguments: true
BinPackParameters: false
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: false
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortFunctionsOnASingleLine: InlineOnly
AlwaysBreakTemplateDeclarations: false
ColumnLimit: 80
MaxEmptyLinesToKeep: 2
KeepEmptyLinesAtTheStartOfBlocks: false
ContinuationIndentWidth: 2
PointerAlignment: Right
ReflowComments: false
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: Always
SpaceInEmptyParentheses: false
SpacesInAngles: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp03

SortIncludes: false

FixNamespaceComments: false
BreakBeforeBinaryOperators: NonAssignment
SpaceAfterTemplateKeyword: true
AlignAfterOpenBracket: Align
AlignOperands: true
BreakConstructorInitializers: AfterColon
ConstructorInitializerAllOnOneLineOrOnePerLine: true
SpaceAfterCStyleCast: true
BreakBeforeTernaryOperators: true


================================================
FILE: .clang-tidy
================================================
Checks:        "*,\
# not currently a coding convention, but conceivable,\
-llvm-include-order,\
# currently the coding convention deliberately produces violations of these,\
# rules, but it may make sense to reconsider,\
-readability-implicit-bool-conversion,\
-readability-braces-around-statements,\
-readability-named-parameter,\
-fuchsia-default-arguments,\
-google-readability-todo,\
-google-runtime-int,\
-cppcoreguidelines-avoid-goto,\
-hicpp-avoid-goto, \
-cppcoreguidelines-pro-type-member-init,\
-cppcoreguidelines-pro-type-static-cast-downcast,\
-readability-identifier-naming,\
# not applicable,\
-fuchsia-default-arguments-calls,\
-fuchsia-overloaded-operator,\
-fuchsia-statically-constructed-objects,\
# not currently a coding convention, C++11-specific, but conceivable,\
-modernize-use-nullptr,\
-modernize-use-equals-default,\
-modernize-deprecated-headers,\
# not currently a coding convention, C++11-specific and hard to implement,\
-hicpp-no-malloc,\
-hicpp-avoid-c-arrays,\
-modernize-avoid-c-arrays,\
-modernize-pass-by-value,\
-modernize-loop-convert,\
-modernize-use-auto,\
-modernize-use-trailing-return-type,\
-modernize-use-using,\
-modernize-return-braced-init-list,\
-cppcoreguidelines-avoid-c-arrays,\
-cppcoreguidelines-no-malloc,\
-cppcoreguidelines-owning-memory,\
-cppcoreguidelines-pro-type-union-access,\
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,\
-cppcoreguidelines-pro-bounds-constant-array-index,\
-cppcoreguidelines-pro-bounds-pointer-arithmetic,\
# not easily possible to implement (maybe replace by specific exclusions),\
-cppcoreguidelines-pro-type-vararg,\
-cppcoreguidelines-pro-type-reinterpret-cast,\
-hicpp-signed-bitwise,\
# duplicates,\
-google-readability-braces-around-statements,\
-cppcoreguidelines-pro-type-cstyle-cast,\
-cppcoreguidelines-avoid-magic-numbers,\
-readability-magic-numbers,\
-hicpp-braces-around-statements,\
-hicpp-use-equals-default,\
-hicpp-deprecated-headers,\
-hicpp-no-assembler,\
-hicpp-vararg,\
-hicpp-use-auto,\
-hicpp-use-nullptr,\
-hicpp-no-array-decay,\
-hicpp-member-init"
WarningsAsErrors: ''
HeaderFilterRegex: ''
# AnalyzeTemporaryDtors: false
CheckOptions:
  # - key:             cert-dcl59-cpp.HeaderFileExtensions
    # value:           h,hh,hpp,hxx
  # - key:             cert-err61-cpp.CheckThrowTemporaries
    # value:           '1'
  # - key:             cert-oop11-cpp.IncludeStyle
    # value:           llvm
  # - key:             cert-oop11-cpp.UseCERTSemantics
    # value:           '1'
  # - key:             cppcoreguidelines-pro-bounds-constant-array-index.GslHeader
    # value:           ''
  # - key:             cppcoreguidelines-pro-bounds-constant-array-index.IncludeStyle
    # value:           '0'
  # - key:             cppcoreguidelines-pro-type-member-init.IgnoreArrays
    # value:           '0'
  # - key:             google-build-namespaces.HeaderFileExtensions
    # value:           h,hh,hpp,hxx
  # - key:             google-global-names-in-headers.HeaderFileExtensions
    # value:           h
  # - key:             google-readability-braces-around-statements.ShortStatementLines
    # value:           '1'
  # - key:             google-readability-function-size.BranchThreshold
    # value:           '4294967295'
  # - key:             google-readability-function-size.LineThreshold
    # value:           '4294967295'
  # - key:             google-readability-function-size.StatementThreshold
    # value:           '800'
  # - key:             google-readability-namespace-comments.ShortNamespaceLines
    # value:           '10'
  # - key:             google-readability-namespace-comments.SpacesBeforeComments
    # value:           '2'
  # - key:             google-runtime-int.SignedTypePrefix
    # value:           int
  # - key:             google-runtime-int.TypeSuffix
    # value:           ''
  # - key:             google-runtime-int.UnsignedTypePrefix
    # value:           uint
  # - key:             llvm-namespace-comment.ShortNamespaceLines
    # value:           '1'
  # - key:             llvm-namespace-comment.SpacesBeforeComments
    # value:           '1'
  # - key:             misc-assert-side-effect.AssertMacros
    # value:           assert
  # - key:             misc-assert-side-effect.CheckFunctionCalls
    # value:           '0'
  # - key:             misc-dangling-handle.HandleClasses
    # value:           'std::basic_string_view;std::experimental::basic_string_view'
  # - key:             misc-definitions-in-headers.HeaderFileExtensions
    # value:           ',h,hh,hpp,hxx'
  # - key:             misc-definitions-in-headers.UseHeaderFileExtension
    # value:           '1'
  # - key:             misc-misplaced-widening-cast.CheckImplicitCasts
    # value:           '1'
  # - key:             misc-move-constructor-init.IncludeStyle
    # value:           llvm
  # - key:             misc-move-constructor-init.UseCERTSemantics
    # value:           '0'
  # - key:             misc-sizeof-expression.WarnOnSizeOfCompareToConstant
    # value:           '1'
  # - key:             misc-sizeof-expression.WarnOnSizeOfConstant
    # value:           '1'
  # - key:             misc-sizeof-expression.WarnOnSizeOfThis
    # value:           '1'
  # - key:             misc-string-constructor.LargeLengthThreshold
    # value:           '8388608'
  # - key:             misc-string-constructor.WarnOnLargeLength
    # value:           '1'
  # - key:             misc-suspicious-missing-comma.MaxConcatenatedTokens
    # value:           '5'
  # - key:             misc-suspicious-missing-comma.RatioThreshold
    # value:           '0.200000'
  # - key:             misc-suspicious-missing-comma.SizeThreshold
    # value:           '5'
  # - key:             misc-suspicious-string-compare.StringCompareLikeFunctions
    # value:           ''
  # - key:             misc-suspicious-string-compare.WarnOnImplicitComparison
    # value:           '1'
  # - key:             misc-suspicious-string-compare.WarnOnLogicalNotComparison
    # value:           '0'
  # - key:             misc-throw-by-value-catch-by-reference.CheckThrowTemporaries
    # value:           '1'
  # - key:             modernize-loop-convert.MaxCopySize
    # value:           '16'
  # - key:             modernize-loop-convert.MinConfidence
    # value:           reasonable
  # - key:             modernize-loop-convert.NamingStyle
    # value:           CamelCase
  # - key:             modernize-pass-by-value.IncludeStyle
    # value:           llvm
  # - key:             modernize-replace-auto-ptr.IncludeStyle
    # value:           llvm
  # - key:             modernize-use-nullptr.NullMacros
    # value:           'NULL'
  # - key:             performance-faster-string-find.StringLikeClasses
    # value:           'std::basic_string'
  # - key:             performance-for-range-copy.WarnOnAllAutoCopies
    # value:           '0'
  # - key:             readability-braces-around-statements.ShortStatementLines
    # value:           '1'
  # - key:             readability-function-size.BranchThreshold
    # value:           '4294967295'
  # - key:             readability-function-size.LineThreshold
    # value:           '4294967295'
  # - key:             readability-function-size.StatementThreshold
    # value:           '800'
  # - key:             readability-identifier-naming.AbstractClassCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.AbstractClassPrefix
    # value:           ''
  # - key:             readability-identifier-naming.AbstractClassSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ClassCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ClassConstantCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ClassConstantPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ClassConstantSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ClassMemberCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ClassMemberPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ClassMemberSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ClassMethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ClassMethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ClassMethodSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ClassPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ClassSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ConstantCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ConstantMemberCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ConstantMemberPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ConstantMemberSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ConstantParameterCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ConstantParameterPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ConstantParameterSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ConstantPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ConstantSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ConstexprFunctionCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ConstexprFunctionPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ConstexprFunctionSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ConstexprMethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ConstexprMethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ConstexprMethodSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ConstexprVariableCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ConstexprVariablePrefix
    # value:           ''
  # - key:             readability-identifier-naming.ConstexprVariableSuffix
    # value:           ''
  # - key:             readability-identifier-naming.EnumCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.EnumConstantCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.EnumConstantPrefix
    # value:           ''
  # - key:             readability-identifier-naming.EnumConstantSuffix
    # value:           ''
  # - key:             readability-identifier-naming.EnumPrefix
    # value:           ''
  # - key:             readability-identifier-naming.EnumSuffix
    # value:           ''
  # - key:             readability-identifier-naming.FunctionCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.FunctionPrefix
    # value:           ''
  # - key:             readability-identifier-naming.FunctionSuffix
    # value:           ''
  # - key:             readability-identifier-naming.GlobalConstantCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.GlobalConstantPrefix
    # value:           ''
  # - key:             readability-identifier-naming.GlobalConstantSuffix
    # value:           ''
  # - key:             readability-identifier-naming.GlobalFunctionCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.GlobalFunctionPrefix
    # value:           ''
  # - key:             readability-identifier-naming.GlobalFunctionSuffix
    # value:           ''
  # - key:             readability-identifier-naming.GlobalVariableCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.GlobalVariablePrefix
    # value:           ''
  # - key:             readability-identifier-naming.GlobalVariableSuffix
    # value:           ''
  # - key:             readability-identifier-naming.IgnoreFailedSplit
    # value:           '0'
  # - key:             readability-identifier-naming.InlineNamespaceCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.InlineNamespacePrefix
    # value:           ''
  # - key:             readability-identifier-naming.InlineNamespaceSuffix
    # value:           ''
   - key:             readability-identifier-naming.LocalConstantCase
     value:           lower_case
   - key:             readability-identifier-naming.LocalConstantPrefix
     value:           ''
   - key:             readability-identifier-naming.LocalConstantSuffix
     value:           ''
   - key:             readability-identifier-naming.LocalVariableCase
     value:           lower_case
   - key:             readability-identifier-naming.LocalVariablePrefix
     value:           ''
   - key:             readability-identifier-naming.LocalVariableSuffix
     value:           ''
  # - key:             readability-identifier-naming.MemberCase
    # value:           lower_case
  # - key:             readability-identifier-naming.MemberPrefix
    # value:           '_'
  # - key:             readability-identifier-naming.MemberSuffix
    # value:           ''
  # - key:             readability-identifier-naming.MethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.MethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.MethodSuffix
    # value:           ''
  # - key:             readability-identifier-naming.NamespaceCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.NamespacePrefix
    # value:           ''
  # - key:             readability-identifier-naming.NamespaceSuffix
    # value:           ''
   - key:             readability-identifier-naming.ParameterCase
     value:           lower_case
  # - key:             readability-identifier-naming.ParameterPackCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ParameterPackPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ParameterPackSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ParameterPrefix
    # value:           ''
   - key:             readability-identifier-naming.ParameterSuffix
     value:           '_'
   - key:             readability-identifier-naming.PrivateMemberCase
     value:           lower_case
   - key:             readability-identifier-naming.PrivateMemberPrefix
     value:           '_'
   - key:             readability-identifier-naming.PrivateMemberSuffix
     value:           ''
  # - key:             readability-identifier-naming.PrivateMethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.PrivateMethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.PrivateMethodSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ProtectedMemberCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ProtectedMemberPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ProtectedMemberSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ProtectedMethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ProtectedMethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ProtectedMethodSuffix
    # value:           ''
  # - key:             readability-identifier-naming.PublicMemberCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.PublicMemberPrefix
    # value:           ''
  # - key:             readability-identifier-naming.PublicMemberSuffix
    # value:           ''
  # - key:             readability-identifier-naming.PublicMethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.PublicMethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.PublicMethodSuffix
    # value:           ''
  # - key:             readability-identifier-naming.StaticConstantCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.StaticConstantPrefix
    # value:           ''
  # - key:             readability-identifier-naming.StaticConstantSuffix
    # value:           ''
  # - key:             readability-identifier-naming.StaticVariableCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.StaticVariablePrefix
    # value:           ''
  # - key:             readability-identifier-naming.StaticVariableSuffix
    # value:           ''
  # - key:             readability-identifier-naming.StructCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.StructPrefix
    # value:           ''
  # - key:             readability-identifier-naming.StructSuffix
    # value:           ''
  # - key:             readability-identifier-naming.TemplateParameterCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.TemplateParameterPrefix
    # value:           ''
  # - key:             readability-identifier-naming.TemplateParameterSuffix
    # value:           ''
  # - key:             readability-identifier-naming.TemplateTemplateParameterCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.TemplateTemplateParameterPrefix
    # value:           ''
  # - key:             readability-identifier-naming.TemplateTemplateParameterSuffix
    # value:           ''
  # - key:             readability-identifier-naming.TypeTemplateParameterCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.TypeTemplateParameterPrefix
    # value:           ''
  # - key:             readability-identifier-naming.TypeTemplateParameterSuffix
    # value:           ''
  # - key:             readability-identifier-naming.TypedefCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.TypedefPrefix
    # value:           ''
  # - key:             readability-identifier-naming.TypedefSuffix
    # value:           ''
  # - key:             readability-identifier-naming.UnionCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.UnionPrefix
    # value:           ''
  # - key:             readability-identifier-naming.UnionSuffix
    # value:           ''
  # - key:             readability-identifier-naming.ValueTemplateParameterCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.ValueTemplateParameterPrefix
    # value:           ''
  # - key:             readability-identifier-naming.ValueTemplateParameterSuffix
    # value:           ''
  # - key:             readability-identifier-naming.VariableCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.VariablePrefix
    # value:           ''
  # - key:             readability-identifier-naming.VariableSuffix
    # value:           ''
  # - key:             readability-identifier-naming.VirtualMethodCase
    # value:           aNy_CasE
  # - key:             readability-identifier-naming.VirtualMethodPrefix
    # value:           ''
  # - key:             readability-identifier-naming.VirtualMethodSuffix
    # value:           ''
  # - key:             readability-simplify-boolean-expr.ChainedConditionalAssignment
    # value:           '0'
  # - key:             readability-simplify-boolean-expr.ChainedConditionalReturn
    # value:           '0'
   - key:             modernize-use-override.OverrideSpelling
     value:           'ZMQ_OVERRIDE'
   - key:             modernize-use-override.FinalSpelling
     value:           'ZMQ_FINAL'


================================================
FILE: .git-blame-ignore-revs
================================================
# tree-wide clang format
41f459e1dc6f7cdedd1268298153c970e290b2ce


================================================
FILE: .github/CONTRIBUTING.md
================================================
# Pull Request Notice

Before sending a pull request make sure each commit solves one clear, minimal,
plausible problem. Further each commit should have the following format:

```
Problem: X is broken

Solution: do Y and Z to fix X
```

Please try to have the code changes conform to our coding style. For your
convenience, you can install clang-format (at least version 5.0) and then
run ```make clang-format-check```. Don't fix existing issues, if any - just
make sure your changes are compliant. ```make clang-format-diff``` will
automatically apply the required changes.
To set a specific clang-format binary with autotools, you can for example
run: ```./configure CLANG_FORMAT=clang-format-5.0```

Please avoid sending a pull request with recursive merge nodes, as they
are impossible to fix once merged. Please rebase your branch on
zeromq/libzmq master instead of merging it.

```
git remote add upstream git@github.com:zeromq/libzmq.git
git fetch upstream
git rebase upstream/master
git push -f
```

In case you already merged instead of rebasing you can drop the merge commit.

```
git rebase -i HEAD~10
```

Now, find your merge commit and mark it as drop and save. Finally rebase!

If you are a new contributor please have a look at our contributing guidelines:
[CONTRIBUTING](http://zeromq.org/docs:contributing)

# FIRST TIME CONTRIBUTORS PLEASE NOTE

Please add an additional commit with a relicensing grant.

[Example](https://github.com/zeromq/libzmq/commit/fecbd42dbe45455fff3b6456350ceca047b82050)

[More information on RELICENSING effort](https://github.com/zeromq/libzmq/tree/master/RELICENSE/README.md)


================================================
FILE: .github/issue_template.md
================================================
*Please use this template for reporting suspected bugs or requests for help.*

# Issue description



# Environment

* libzmq version (commit hash if unreleased): 
* OS: 

# Minimal test code / Steps to reproduce the issue

1.  


# What's the actual result? (include assertion message & call stack if applicable)



# What's the expected result?



================================================
FILE: .github/stale.yml
================================================
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 365
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 56
# Issues with these labels will never be considered stale
exemptLabels:
  - "Help Request"
  - "Feature Request"
  - "Problem reproduced"
  - Critical
# Label to use when marking an issue as stale
staleLabel: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
  This issue has been automatically marked as stale because it has not had
  activity for 365 days. It will be closed if no further activity occurs within
  56 days. Thank you for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false


================================================
FILE: .github/workflows/CI.yaml
================================================
name: CI
on:
  push:
  pull_request:
  schedule:
    - cron: "0 9 * * 5"

jobs:
  build:
    if: github.event_name == 'pull_request' || github.event_name == 'push'
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        include:
          - platform: x64
            configuration: release
            os: windows-2019
            WITH_LIBSODIUM: ON
            ENABLE_CURVE: ON
            CMAKE_GENERATOR: Visual Studio 16 2019
            MSVCVERSION: v142
            MSVCYEAR: vs2019
            ARTIFACT_NAME: v142-x64
            ENABLE_DRAFTS: ON
          - os: ubuntu-latest
            BUILD_TYPE: default
            PACKAGES: asciidoctor
            DRAFT: disabled
            POLLER: select
          - os: ubuntu-latest
            BUILD_TYPE: default
            DRAFT: disabled
            POLLER: poll
          - os: ubuntu-latest
            BUILD_TYPE: android
            NDK_VERSION: android-ndk-r25
            DRAFT: disabled
          - os: ubuntu-latest
            BUILD_TYPE: coverage
            PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev lcov
            DRAFT: enabled
            GSSAPI: enabled
            PGM: enabled
            NORM: enabled
            TIPC: enabled
            TLS: enabled
            VMCI: enabled
          - os: ubuntu-latest
            BUILD_TYPE: valgrind
            PACKAGES: valgrind libgnutls28-dev
            DRAFT: enabled
          - os: ubuntu-latest
            BUILD_TYPE: cmake
            CURVE: libsodium
            DRAFT: enabled
            PACKAGES: cmake libsodium-dev
            TLS: enabled
          - os: ubuntu-latest
            BUILD_TYPE: cmake
            CURVE: libsodium
            DRAFT: enabled
            GSSAPI: enabled
            PACKAGES: cmake libsodium-dev libkrb5-dev
            TLS: enabled
          - os: ubuntu-latest
            BUILD_TYPE: cmake
            DRAFT: enabled
            PACKAGES: cmake clang-format-18
            DO_CLANG_FORMAT_CHECK: 1
          - os: ubuntu-latest
            BUILD_TYPE: default
            PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev libsodium-dev libnss3-dev libbsd-dev
            CURVE: libsodium
            ADDRESS_SANITIZER: enabled
            DRAFT: enabled
          - os: ubuntu-latest
            BUILD_TYPE: default
            PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev libsodium-dev libnss3-dev libbsd-dev
            CURVE: libsodium
            GSSAPI: enabled
            PGM: enabled
            NORM: enabled
            TIPC: enabled
            IPv6: ON
            TLS: enabled
            USE_NSS: yes
            VMCI: enabled
            DRAFT: enabled
          - os: ubuntu-latest
            BUILD_TYPE: default
            PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev libsodium-dev libnss3-dev
            CURVE: libsodium
            GSSAPI: enabled
            PGM: enabled
            NORM: enabled
            TIPC: enabled
            IPv6: ON
            TLS: enabled
            USE_NSS: yes
            VMCI: enabled
            DRAFT: enabled
            FORCE_98: enabled
            CXX: clang++
          - os: ubuntu-latest
            BUILD_TYPE: abi-compliance-checker
            PACKAGES: abi-dumper abi-compliance-checker
            DRAFT: disabled
          - os: ubuntu-latest
            BUILD_TYPE: cmake
            PACKAGES: clang-tidy clang-tools
            DRAFT: enabled
            CXX: clang++
          - os: macos-latest
            BUILD_TYPE: default
            PACKAGES: automake autoconf libtool
            DRAFT: enabled
          - os: macos-latest
            BUILD_TYPE: default
            PACKAGES: automake autoconf libtool libsodium
            CURVE: libsodium
            DRAFT: disabled
    env:
      platform: ${{ matrix.platform }}
      configuration: ${{ matrix.configuration }}
      WITH_LIBSODIUM: ${{ matrix.WITH_LIBSODIUM }}
      ENABLE_CURVE: ${{ matrix.ENABLE_CURVE }}
      CMAKE_GENERATOR: ${{ matrix.CMAKE_GENERATOR }}
      MSVCVERSION: ${{ matrix.MSVCVERSION }}
      MSVCYEAR: ${{ matrix.MSVCYEAR }}
      ARTIFACT_NAME: ${{ matrix.ARTIFACT_NAME }}
      ENABLE_DRAFTS: ${{ matrix.ENABLE_DRAFTS }}
      SODIUM_INCLUDE_DIR: ${{ github.workspace }}\libsodium\src\libsodium\include"
      SODIUM_LIBRARY_DIR: ${{ github.workspace }}\libsodium\bin\${{ matrix.platform }}\${{ matrix.configuration }}\${{ matrix.MSVCVERSION }}\dynamic"
      LIBZMQ_SRCDIR: ${{ github.workspace }}\libzmq
      BUILD_TYPE: ${{ matrix.BUILD_TYPE }}
      CURVE: ${{ matrix.CURVE }}
      DRAFT: ${{ matrix.DRAFT }}
      ADDRESS_SANITIZER: ${{ matrix.ADDRESS_SANITIZER }}
      DO_CLANG_FORMAT_CHECK: ${{ matrix.DO_CLANG_FORMAT_CHECK }}
      FORCE_98: ${{ matrix.FORCE_98 }}
      CXX: ${{ matrix.CXX }}
      GSSAPI: ${{ matrix.GSSAPI }}
      PGM: ${{ matrix.PGM }}
      NORM: ${{ matrix.NORM }}
      TIPC: ${{ matrix.TIPC }}
      IPv6: ${{ matrix.IPv6 }}
      TLS: ${{ matrix.TLS }}
      USE_NSS: ${{ matrix.USE_NSS }}
      VMCI: ${{ matrix.VMCI }}
      POLLER: ${{ matrix.POLLER }}
      NDK_VERSION: ${{ matrix.NDK_VERSION }}
      ANDROID_NDK_ROOT: /tmp/${{ matrix.NDK_VERSION }}
    steps:    
    - name: Add msbuild to PATH
      uses: microsoft/setup-msbuild@v1.0.2
      if: matrix.os == 'windows-2019'
    - uses: actions/checkout@v2
      if: matrix.WITH_LIBSODIUM == 'ON'
      with:
        repository: jedisct1/libsodium
        ref: stable
        path: libsodium
    - name: Compile libsodium
      if: matrix.WITH_LIBSODIUM == 'ON' && matrix.os == 'windows-2019'
      shell: cmd
      working-directory: libsodium
      run: msbuild /v:minimal /p:Configuration=%Configuration%DLL builds\msvc\%MSVCYEAR%\libsodium\libsodium.vcxproj
    - name: Copy libsodium
      if: matrix.WITH_LIBSODIUM == 'ON' && matrix.os == 'windows-2019'
      shell: powershell
      working-directory: libsodium
      run: Copy-Item "bin\${env:Platform}\${env:Configuration}\${env:MSVCVERSION}\dynamic\libsodium.lib" -Destination "bin\${env:Platform}\${env:Configuration}\${env:MSVCVERSION}\dynamic\sodium.lib"
    - uses: actions/checkout@v2    
      with:    
        path: libzmq
    - run: md build_libzmq
      shell: cmd
      if: matrix.os == 'windows-2019'
    - name: build-win
      if: matrix.os == 'windows-2019'
      shell: cmd
      working-directory: build_libzmq
      run: |        
        cmake -D CMAKE_INCLUDE_PATH="%SODIUM_INCLUDE_DIR%" -D CMAKE_LIBRARY_PATH="%SODIUM_LIBRARY_DIR%" -D WITH_LIBSODIUM="%WITH_LIBSODIUM%" -D ENABLE_DRAFTS="%ENABLE_DRAFTS%" -D ENABLE_ANALYSIS="%ENABLE_ANALYSIS%" -D ENABLE_CURVE="%ENABLE_CURVE%" -D API_POLLER="%API_POLLER%" -D POLLER="%POLLER%" %EXTRA_FLAGS% -D WITH_LIBSODIUM="%WITH_LIBSODIUM%" -D LIBZMQ_WERROR="%LIBZMQ_WERROR%" -G "%CMAKE_GENERATOR%" "%LIBZMQ_SRCDIR%"
        cmake --build . --config %configuration% --target install -- -verbosity:Minimal -maxcpucount           
    - name: test
      if: matrix.os == 'windows-2019'
      shell: cmd
      working-directory: build_libzmq
      run: ctest -C "%Configuration%"
    - name: Add debian packages
      if: matrix.os == 'ubuntu-latest' && (matrix.BUILD_TYPE != 'coverage' || github.repository == 'zeromq/libzmq')
      uses: myci-actions/add-deb-repo@10
      with:
        repo-name: obs
        repo: deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_20.04/ ./
        keys-asc: https://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_20.04/Release.key
        install: ${{ matrix.PACKAGES }}
    - name: Add brew packages
      if: matrix.os == 'macos-latest'
      shell: bash
      run: brew install ${{ matrix.PACKAGES }}
    - name: build
      if: (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest') && (matrix.BUILD_TYPE != 'coverage' || github.repository == 'zeromq/libzmq')
      shell: bash
      working-directory: libzmq
      run: ./ci_build.sh
    - name: coveralls
      if: matrix.BUILD_TYPE == 'coverage' && github.repository == 'zeromq/libzmq'
      uses: coverallsapp/github-action@master
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}
        path-to-lcov: /home/runner/work/libzmq/libzmq/libzmq/lcov.info
  cron:
    runs-on: ubuntu-latest
    if: github.event_name == 'schedule'
    strategy:
      fail-fast: false
    env:
      BUILD_TYPE: cmake
      CXX: clang++
      CLANG_TIDY: clang-tidy
    steps:
    - name: Add debian packages
      run: sudo apt-get install --yes clang-tidy clang-tools
    - name: build
      shell: bash
      working-directory: libzmq
      run: ./ci_build.sh


================================================
FILE: .github/workflows/Docs.yaml
================================================
# Simple workflow for deploying static content to GitHub Pages
name: Deploy API docs content to Pages

on:
  # Runs on pushes targeting the default branch
  push:
    branches: ["master"]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
  contents: read
  pages: write
  id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
  group: "pages"
  cancel-in-progress: false

jobs:
  # Single deploy job since we're just deploying
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3

      ## libzmq-specific CI/CD ##
      - name: Install AsciiDoctor
        run: sudo apt install -y asciidoctor
      - name: Convert AsciiDoc with AsciiDoctor into HTML
        run: ./autogen.sh && ./configure && make --directory=doc

      ## boilerplate steps to publish github Pages ##
      - name: Setup Pages
        uses: actions/configure-pages@v3
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v2
        with:
          path: 'doc/'
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v2


================================================
FILE: .github/workflows/Fuzzers.yaml
================================================
name: Fuzzers
on:
  push:
    branches:
      - master
  pull_request:
    paths:
      - '.github/workflows/Fuzzers.yaml'
      - 'src/*'
      - 'tests/*fuzzer.cpp'
jobs:
  Fuzzing:
    runs-on: ubuntu-latest
    if: github.repository == 'zeromq/libzmq'
    strategy:
      matrix:
        san: [address, memory, undefined]
    steps:
    - name: Build Fuzzers (${{ matrix.san }})
      id: build
      uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
      with:
        sanitizer: ${{ matrix.san }}
        oss-fuzz-project-name: 'libzmq'
        allowed-broken-targets-percentage: 0
        dry-run: false
    - name: Run Fuzzers (${{ matrix.san }})
      id: run
      uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
      with:
        sanitizer: ${{ matrix.san }}
        oss-fuzz-project-name: 'libzmq'
        allowed-broken-targets-percentage: 0
        dry-run: false
        fuzz-seconds: 300


================================================
FILE: .gitignore
================================================
syntax: glob # for hg-git users

# Generated build scripts and IDE generating files
## autotools
/Makefile
builds/Makefile
builds/deprecated-msvc/Makefile
doc/Makefile
doc/__pagelist
libtool
### automake
Makefile.in
.deps/
.dirstamp
### autoconf
autom4te.cache
aclocal.m4
config
config.status
config.log
configure
stamp-h1
## CMake
cmake-build-debug/
build/
## Android
builds/android/prefix
## IntelliJ
.idea/
## Visual Code
.vscode/
## other results-like folders
bin/
lib/
obj/
## Doxygen
doxygen/
## Packaging 
packaging/nuget/*.nupkg

# Test related build files
libtestutil.a
libunity.a

# Some build outputs and temporal files
*.o
*.gcno
*.gcda
*.gcov
*.ncb
*.lo
*.loT
*.la
*.exe
*.html
*.pdf
*.ps
*~
.*~
.libs

# /src
## Ignore generated files in configuration process
src/platform.hpp*
src/libzmq.pc

# /tools
## Executable binaries are ignored
tools/curve_keygen
## Executable source files must be tracked
!tools/*.[ch]
!tools/*.[ch]pp

# /tests
## Test binaries and logs are ignored
tests/test*
tests/test*.log
tests/test*.trs
## Test source files must be tracked
!tests/test*.[ch]
!tests/test*.[ch]pp
## Build script and documentations must be tracked
!tests/CMakeLists.txt
!tests/README.md

# /unittests
## Unit test binaries and logs are ignored
unittests/unittest_*
unittests/unittest*.log
unittests/unittest*.trs
## Unit test source files must be tracked
!unittests/unittest*.[ch]
!unittests/unittest*.[ch]pp
## Build script and documentations must be tracked
!unittests/CMakeLists.txt
!unittests/README.md

# check test log files
test-suite*.log

# /perf
## Benchmarking binaries and result files are ignored
perf/*_lat
perf/*_thr
perf/benchmark_*
perf/results
## Benchmarking source files must be tracked
!perf/*.[ch]
!perf/*.[ch]pp
## Benchmarking tool scripts must be tracked
!perf/*.py
!perf/*.sh

# /doc
## Generated document files 
doc/*.[137]
doc/*.html
doc/*.xml

# external libraries and release archive files
foreign/openpgm/*
!foreign/openpgm/*.tar.bz2
!foreign/openpgm/*.tar.gz
!foreign/openpgm/Makefile.am
zeromq-*.tar.gz
zeromq-*.zip
core

mybuild


================================================
FILE: .hgeol
================================================
[patterns]
** = native


================================================
FILE: .mailmap
================================================
Ahmet Kakici <ahmet.kakici@pro-line.com.tr> ahmet <ahmet.kakici@pro-line.com.tr>
Andrey Sibiryov <me@kobology.ru> Kobolog <me@kobology.ru>
Brian Knox <taotetek@gmail.com> taotetek <taotetek@users.noreply.github.com>
Chernyshev Vyacheslav <astellar@ro.ru> Astellar <astellar@ro.ru>
Chris Laws <clawsicus@gmail.com> Chris Laws <claws@localhost>
Chris Staite <chris@yourdreamnet.co.uk> Chris <chris@yourdreamnet.co.uk>
Christoph Zach <czach@rst-automation.com> czach <czach@rst-automation.com>
Chuck Remes <git@chuckremes.com> Chuck Remes <cremes@mac.com>
Chuck Remes <git@chuckremes.com> Chuck Remes <cremes.devlist@mac.com>
Constantin Rack <constantin.rack@gmail.com> Constantin Rack <constantin@rack.li>
Constantin Rack <constantin.rack@gmail.com> Constantin Rack <c-rack@users.noreply.github.com>
Daniel Krikun <krikun.daniel@gmail.com> danielkr <krikun.daniel@gmail.com>
Daiyu Hurst <daiyu.hurst@gmail.com> DaiyuHurst <daiyu.hurst@gmail.com>
Diego Rodriguez-Losada <diego.rlosada@gmail.com> Diego <diego.rlosada@gmail.com>
Dongmin Yu <miniway@gmail.com> Min(Dongmin Yu) <miniway@gmail.com>
Doron Somech <somdoron@gmail.com> somdoron <somdoron@gmail.com>
Elliot Saba <staticfloat@gmail.com> staticfloat <staticfloat@gmail.com>
Eric Voskuil <eric@voskuil.org> evoskuil <eric@voskuil.org>
Eric Voskuil <eric@voskuil.org> anonymous <eric@voskuil.org>
Felipe Farinon <felipe.farinon@powersyslab.com> psl-felipefarinon <felipe.farinon@powersyslab.com>
Frank Hartmann <soundart@gmx.net> Frank <soundart@gmx.net>
Gian Lorenzo Meocci <glmeocci@gmail.com> meox <glmeocci@gmail.com>
Hardeep Singh <hshardeesi@gmail.com> Hardeep <hshardeesi@gmail.com>
Henrik Feldt <henrik@haf.se> Henrik <henrik@haf.se>
Huang Xin <chrox.huang@gmail.com> chrox <chrox.huang@gmail.com>
Ian Barber <ian.barber@gmail.com> Ian Barber <ianbarber@google.com>
Jens Auer <jens.auer@cgi.com> Jens Auer <jens-auer@users.noreply.github.com>
Jens Auer <jens.auer@cgi.com> Jens Auer <jens.auer@betaversion.net>
Joe Eli McIlvain <joe.eli.mac@gmail.com> Joe McIlvain <joe.eli.mac@gmail.com>
Jos Decoster <jos.decoster@gmail.com> jdc8 <jos.decoster@gmail.com>
Jos Decoster <jos.decoster@gmail.com> Jos Decoster <jos.decoster@retarget.com>
Joshua Gao <jmg116@gmail.com> Josh Gao <jgao@mobileiron.com>
Jörg Kreuzberger <joerg@kreuzberger.eu> kreuzberger <joerg@kreuzberger.eu>
Arnaud Kapp <kapp.arno@gmail.com> Kapp Arnaud <kapp.arno@gmail.com>
Arnaud Kapp <kapp.arno@gmail.com> KAPP Arnaud <kapp.arno@gmail.com>
Arnaud Kapp <kapp.arno@gmail.com> KAPP Arnaud <xaqq@users.noreply.github.com>
Kenneth Wilke <kenneth.wilke@rackspace.com> KennethWilke <kenneth.wilke@rackspace.com>
Kevin Sapper <mail@kevinsapper.de> sappo <mail@kevinsapper.de>
Kevin Sapper <mail@kevinsapper.de> Kevin Sapper <sappo@users.noreply.github.com>
Leonard Michelet <leonard.michelet@openwide.fr> leonarf <leonard.michelet@openwide.fr>
Martijn Jasperse <m.jasperse@gmail.com> mjasperse <m.jasperse@gmail.com>
Martin Hurton <hurtonm@gmail.com> Martin Hurtoň <hurtonm@gmail.com>
Martin Lucina <martin@lucina.net> Martin Lucina <mato@kotelna.sk>
Martin Sustrik <sustrik@250bpm.com> Martin Sustrik <sustrik@fastmq.commkdir>
Martin Sustrik <sustrik@250bpm.com> Martin Sustrik <sustrik@fastmq.com>
Martin Sustrik <sustrik@250bpm.com> sustrik <sustrik@250bpm.com>
Martin Sustrik <sustrik@250bpm.com> Martin Sustrik <sustrik@jozsi.(none)>
Martin Sustrik <sustrik@250bpm.com> unknown <sustrik@.(none)>
Martin Sustrik <sustrik@250bpm.com> Martin Sustrik <sustrik@turist.(none)>
Maurice Barnum <msb@yahoo-inc.com> maurice barnum <msb@yahoo-inc.com>
Maurizio Melato <maurizio.melato@nice-software.com> unknown <mauri@okinawa.(none)>
Max Skaller <Max.Skaller@gmail.com> skaller <Max.Skaller@gmail.com>
Michael Fox <415fox@gmail.com> m <415fox@gmail.com>
Michael Hand <mipa@matrix.by> Mipa <mipa@matrix.by>
Michel Zou <xantares10@hotmail.com> xantares <xantares09@hotmail.com>
Mikael Helbo Kjaer <mhk@designtech.dk> Mikael Helbo Kjær <mhk@designtech.dk>
Mike Gatny <mgatny@gmail.com> Mike Gatny <mgatny@connamara.com>
Mikko Koppanen <mikko.koppanen@gmail.com> Mikko Koppanen <mkoppanen@php.net>
Mikko Koppanen <mikko.koppanen@gmail.com> Mikko Koppanen <mikko@kuut.io>
Mikko Koppanen <mikko.koppanen@gmail.com> Mikko Koppanen <mkoppanen@gameboy.config>
Min RK <benjaminrk@gmail.com> MinRK <benjaminrk@gmail.com>
Min RK <benjaminrk@gmail.com> Min Ragan-Kelley <benjaminrk@gmail.com>
Montoya Edu <montoya.edu@gmail.com> montoyaedu <montoya.edu@gmail.com>
Nikita Kozlov <nikita@elyzion.net> nikita kozlov <nikita@elyzion.net>
Pavol Malosek <malosek@fastmq.com> malosek <malosek@fastmq.com>
Pieter Hintjens <ph@imatix.com> Pieter Hintjens <ph@itmatix.com>
Reza Ebrahimi <reza.ebrahimi.dev@gmail.com> reza.ebrahimi <reza.ebrahimi.dev@gmail.com>
Ricardo Catalinas Jiménez <r@untroubled.be> Ricardo Catalinas Jiménez <jimenezrick@gmail.com>
Rohan Bedarkar <rohanb@cs.uchicago.edu> rohanbedarkar <rohanb@cs.uchicago.edu>
Rohan Bedarkar <rohanb@cs.uchicago.edu> Rohan <rbe@ws5-34-chi.rtsgroup.net>
Sergey KHripchenko <shripchenko@intermedia.net> root <root@ast-pbx-mt-3.intermedia.net>
Sergey KHripchenko <shripchenko@intermedia.net> shripchenko <shripchenko@intermedia.net>
Sergey M. <dstftw@gmail.com> Sergey M․ <dstftw@gmail.com>
Steven McCoy <steven.mccoy@miru.hk> Steve-o <fnjordy@gmail.com>
Tamara Kustarova <kustarova@fastmq.com> tamara <tamara@jozsi.(none)>
Timothee Besset <ttimo@ttimo.net> Timothee "TTimo" Besset <ttimo@ttimo.net>
Timothy Mossbarger <tim@ent.net> Tim M <tim@ent.net>
Trevor Bernard <trevor.bernard@gmail.com> Trevor Bernard <tbernard@liveops.com>
Trevor Bernard <trevor.bernard@gmail.com> Trevor Bernard <trevor.bernard@userevents.com>
Volodymyr Korniichuk <VolodymyrKorn@gmail.com> Volodymyr Korniichuk <9173519@gmail.com>
lysyloren <lysy_loren@gmail.com> lysyloren <lysy.loren@gmail.com>


================================================
FILE: .obs/workflows.yml
================================================
workflow:
  steps:
    - branch_package:
        source_project: network:messaging:zeromq:git-draft
        source_package: libzmq
        target_project: network:messaging:zeromq:ci
rebuild:
  steps:
    - trigger_services:
        project: network:messaging:zeromq:git-stable
        package: libzmq
    - trigger_services:
        project: network:messaging:zeromq:git-draft
        package: libzmq
  filters:
    event: push
release:
  steps:
    - trigger_services:
        project: network:messaging:zeromq:release-stable
        package: libzmq
    - trigger_services:
        project: network:messaging:zeromq:release-draft
        package: libzmq
  filters:
    event: tag_push


================================================
FILE: .readthedocs.yaml
================================================
#
# libzmq readthedocs.io integration
#
# This configuration file is processed by readthedocs.io to rebuild the
# libzmq documentation using Asciidoctor, see
#   https://docs.readthedocs.io/en/stable/build-customization.html#asciidoc

version: "2"

formats:
  - htmlzip

build:
  os: "ubuntu-22.04"
  tools:
    nodejs: "20"
  # NOTE: as of Nov 2023, build.apt_packages is NOT considered when using build.commands
  #apt_packages:
  #  - automake
  #  - autoconf
  #  - cmake
  #  - libtool
  commands:
    # install required tools
    - npm install -g asciidoctor

    # HTML docs
    # ---------
    - doc/create_page_list.sh "$(pwd)/doc/__pagelist" "$(pwd)/doc"
    - asciidoctor --backend html --destination-dir $READTHEDOCS_OUTPUT/html --attribute stylesheet=asciidoctor.css --attribute zmq_version='4.3.6' --attribute zmq_pagelist_dir=$(pwd)/doc doc/*.adoc

    # HTMLZIP docs
    # ------------
    # Note that for usability we make sure zip will create a zipfile containing just a flat list of HTML files; 
    # to achieve that it's important to avoid storing absolute paths when invoking "zip", thus we use -j
    # Also note that the archive name should match exactly the project slug, "libzmq" in this case.
    - mkdir -p $READTHEDOCS_OUTPUT/htmlzip/
    - cd $READTHEDOCS_OUTPUT/html && zip -j ../htmlzip/libzmq.zip *.html


================================================
FILE: .travis.yml
================================================
# Travis CI script

language: c

os:
- linux

dist: bionic

cache: ccache

env:
  matrix:
    - BUILD_TYPE=default
  # tokens to deploy releases on OBS and create/delete temporary branch on Github.
  # 1) Create a token on https://github.com/settings/tokens/new with "public_repo"
  #    capability and encrypt it with travis encrypt --org -r zeromq/libzmq GH_TOKEN="<token>"
  # 2) Create 2 OBS tokens with osc token --create network:messaging:zeromq:release-<stable|draft> libzmq
  #    encrypt them with travis encrypt --org -r zeromq/libzmq OBS_<STABLE|DRAFT>_TOKEN="<token>"
  global:
    - secure: aaIs9Y44FYp9VFCqa6LLD4illBH4aUfbS0zzzbAQ5xJvD6NfBsMiKEIhf/kRNCHAtP+1VfQVOejTD6/i08ALsVr3cZD9oB/t7874tz2/jeZUIhRNo+1KwyaVqNg0yUSV6ASIoq4aOfuGnjBlezNQ8LQ2bjQB2m4Enl5wxoYcYdA=
    - secure: YFrcedBIKe0NR1WC6qQi9phZgtnzOiBIXm40TirvCtstV4eVnSouKgtQfLLArZ4o2tjflq4grQQNo1rJatvyi5YPOXsMcndsni18S+4Ffu8qbECdtPrK52vBweuf7q9oV9Ydax0Fm4bEqEMOZ2/mRBy3nK+mgsE3upeMwyWR0Zw=
    - secure: lbZSzmqN39QdJwewKOZgq/1ijPKuyx9MFrGzMqXj2+eOSlaZS/tNavHMdKJOev+qJGK9wxmwzxOxS10AiH+AvN7WBacXX4ZtudjScz2HKJRDWTKyzMbzyScq51afniItzrsm+Vo8NHkenNFkux0sSbh0aHlpkLwrGQu+WZWcDN4=
    - secure: "ZFL7hLJlGwYix8fF835OnQYakBt/o5iS7IfSW7el44ejEvGAOM9O5/ufxCcqSqn8Np7nOaM3RriAVTqWPZD6S7tMeflGTSGYHPYwWUc83z4rUPyG2FWVKXdB8ufpebAwu3hCgLiSmVeoQG47dl6xNk1oKCd+3UIjgz33u1Ecfps="

# Build and check this project according to the BUILD_TYPE
script: ./ci_build.sh

# Deploy tags
before_deploy:
- . ./ci_deploy.sh
deploy:
  provider: releases
  api_key:
    secure: vGB5E+A8wxm2J1GJZzmIgT9PrjEzvd9gE8iui8FyxSbxAsW9vFZFGZC/21sTtpVcmRarwQCHH1UEbtg+nJwN2iD9YzMRnSVks8xqP+b709YW+VXaMuhZgTzWa74IorQku7NuvLibvQk72/OSgdwPGaNJ6f5AX9pnWVWbEoW1svE=
  file_glob: true
  file: ${LIBZMQ_DEPLOYMENT}
  skip_cleanup: true
  on:
    repo: zeromq/libzmq
    branch: master
    tags: true
    condition: "$TRAVIS_OS_NAME =~ (linux) && $BUILD_TYPE =~ (default) && $CURVE =~ (libsodium) && -z $DRAFT"


================================================
FILE: AUTHORS
================================================
Corporate Contributors
======================

Copyright (c) 2007-2014 iMatix Corporation
Copyright (c) 2009-2011 250bpm s.r.o.
Copyright (c) 2010-2011 Miru Limited
Copyright (c) 2011 VMware, Inc.
Copyright (c) 2012 Spotify AB
Copyright (c) 2013 Ericsson AB
Copyright (c) 2014 AppDynamics Inc.
Copyright (c) 2015 Google, Inc.
Copyright (c) 2015-2016 Brocade Communications Systems Inc.

Individual Contributors
=======================

AJ Lewis
Alexej Lotz
Andrew Thompson
André Caron
Asko Kauppi
Attila Mark
Barak Amar
Ben Gray
Bernd Melchers
Bernd Prager
Bob Beaty
Brandon Carpenter
Brett Cameron
Brett Viren
Brian Buchanan
Burak Arslan
Carl Clemens
Chia-liang Kao
Chris Busbey
Chris Rempel
Chris Wong
Christian Gudrian
Christian Kamm
Chuck Remes
Conrad D. Steenberg
Constantin Rack
Daniel J. Bernstein
Dhammika Pathirana
Dhruva Krishnamurthy
Dirk O. Kaar
Doron Somech
Douglas Creager
Drew Crawford
Erich Heine
Erik Hugne
Erik Rigtorp
Fabien Ninoles
Frank Denis
George Neill
Gerard Toonstra
Ghislain Putois
Gonzalo Diethelm
Guido Goldstein
Harald Achitz
Hardeep Singh
Hiten Pandya
Ian Barber
Ilja Golshtein
Ilya Kulakov
Ivo Danihelka
Jacob Rideout
Joe Thornber
Jon Dyte
Kamil Shakirov
Ken Steele
Kouhei Sutou
Leonardo J. Consoni
Lionel Flandrin
Lourens Naudé
Luca Boccassi
Marc Rossi
Mark Barbisan
Martin Hurton
Martin Lucina
Martin Pales
Martin Sustrik
Matus Hamorsky
Max Wolf
McClain Looney
Michael Compton
Mika Fischer
Mikael Helbo Kjaer
Mike Gatny
Mikko Koppanen
Min Ragan-Kelley
Neale Ferguson
Nir Soffer
Osiris Pedroso
Paul Betts
Paul Colomiets
Pavel Gushcha
Pavol Malosek
Perry Kundert
Peter Bourgon
Philip Kovacs
Pieter Hintjens
Piotr Trojanek
Reza Ebrahimi
Remi Jouannet
Richard Newton
Rik van der Heijden
Robert G. Jakabosky
Sebastian Otaegui
Stefan Radomski
Steven McCoy
Stuart Webster
Tamara Kustarova
Taras Shpot
Tero Marttila
Terry Wilson
Thijs Terlouw
Thomas Rodgers
Tim Mossbarger
Toralf Wittner
Tore Halvorsen
Trevor Bernard
Vitaly Mayatskikh
Yacheng Zhou

Credits
=======

Aamir Mohammad
Adrian von Bidder
Aleksey Yeschenko
Alessio Spadaro
Alexander Majorov
Anh Vu
Bernd Schumacher
Brian Granger
Carsten Dinkelmann
David Bahi
Dirk Eddelbuettel
Evgueny Khartchenko
Frank Vanden Berghen
Ian Barber
John Apps
Markus Fischer
Matt Muggeridge
Michael Santy
Oleg Sevostyanov
Paulo Henrique Silva
Peter Busser
Peter Lemenkov
Robert Zhang
Toralf Wittner
Zed Shaw



================================================
FILE: CMakeLists.txt
================================================
# CMake build script for ZeroMQ

if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL Darwin)
  cmake_minimum_required(VERSION 3.0.2...3.31)
else()
  cmake_minimum_required(VERSION 2.8.12...3.31)
endif()

project(ZeroMQ)

include(CheckIncludeFiles)
include(CheckCCompilerFlag)
include(CheckCXXCompilerFlag)
include(CheckLibraryExists)
include(CheckCSourceCompiles)
include(CheckCSourceRuns)
include(CMakeDependentOption)
include(CheckCXXSymbolExists)
include(CheckStructHasMember)
include(CheckTypeSize)
include(FindThreads)
include(GNUInstallDirs)
include(CheckTypeSize)
include(CMakePackageConfigHelpers)

list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_SOURCE_DIR}")
set(ZMQ_CMAKE_MODULES_DIR ${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/Modules)
list(APPEND CMAKE_MODULE_PATH ${ZMQ_CMAKE_MODULES_DIR})

include(TestZMQVersion)
include(ZMQSourceRunChecks)
include(ZMQSupportMacros)

find_package(PkgConfig)

# Set lists to empty beforehand as to not accidentally take values from parent
set(sources)
set(cxx-sources)
set(html-docs)
set(target_outputs)

option(ENABLE_ASAN "Build with address sanitizer" OFF)
if(ENABLE_ASAN)
  message(STATUS "Instrumenting with Address Sanitizer")
  set(CMAKE_BUILD_TYPE "RelWithDebInfo")
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer")
  set(CMAKE_CXX_FLAGS
      "${CMAKE_CXX_FLAGS} -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer")
  set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address -fsanitize-address-use-after-scope")
  set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address -fsanitize-address-use-after-scope")
endif()

# NOTE: Running libzmq under TSAN doesn't make much sense -- synchronization in libzmq is to some extent
# handled by the code "knowing" what threads are allowed to do, rather than by enforcing those
# restrictions, so TSAN generates a lot of (presumably) false positives from libzmq.
# The settings below are intended to enable libzmq to be built with minimal support for TSAN
# such that it can be used along with other code that is also built with TSAN.
option(ENABLE_TSAN "Build with thread sanitizer" OFF)
if(ENABLE_TSAN)
  message(STATUS "Instrumenting with Thread Sanitizer")
  set(CMAKE_BUILD_TYPE "RelWithDebInfo")
  set(TSAN_FLAGS "-fno-omit-frame-pointer -fsanitize=thread")
  set(TSAN_CCFLAGS "${TSAN_CCFLAGS} -mllvm -tsan-instrument-memory-accesses=0")
  set(TSAN_CCFLAGS "${TSAN_CCFLAGS} -mllvm -tsan-instrument-atomics=0")
  set(TSAN_CCFLAGS "${TSAN_CCFLAGS} -mllvm -tsan-instrument-func-entry-exit=1")
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${TSAN_FLAGS} ${TSAN_CCFLAGS} -fPIE")
  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TSAN_FLAGS} ${TSAN_CCFLAGS} -fPIE")
  set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${TSAN_FLAGS} -pie -Qunused-arguments")
  set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${TSAN_FLAGS} -pie -Qunused-arguments")
endif()

option(ENABLE_UBSAN "Build with undefined behavior sanitizer" OFF)
if(ENABLE_UBSAN)
  message(STATUS "Instrumenting with Undefined Behavior Sanitizer")
  set(CMAKE_BUILD_TYPE "Debug")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fno-omit-frame-pointer")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fsanitize=undefined")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fsanitize=implicit-conversion")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fsanitize=implicit-integer-truncation")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fsanitize=integer")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fsanitize=nullability")
  set(UBSAN_FLAGS "${UBSAN_FLAGS} -fsanitize=vptr")
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${UBSAN_FLAGS}")
  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${UBSAN_FLAGS}")
  set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${UBSAN_FLAGS}")
  set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${UBSAN_FLAGS}")
endif()

option(ENABLE_INTRINSICS "Build using compiler intrinsics for atomic ops" OFF)
if(ENABLE_INTRINSICS)
  message(STATUS "Using compiler intrinsics for atomic ops")
  add_definitions(-DZMQ_HAVE_ATOMIC_INTRINSICS)
endif()

set(ZMQ_OUTPUT_BASENAME
    "zmq"
    CACHE STRING "Output zmq library base name")

if(${CMAKE_SYSTEM_NAME} STREQUAL Darwin)
  # Find more information: https://cmake.org/Wiki/CMake_RPATH_handling

  # Apply CMP0042: MACOSX_RPATH is enabled by default
  cmake_policy(SET CMP0042 NEW)

  # Add an install rpath if it is not a system directory
  list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" isSystemDir)
  if("${isSystemDir}" STREQUAL "-1")
    set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
  endif()

  # Add linker search paths pointing to external dependencies
  set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
endif()

if (NOT MSVC)
  if(NOT CMAKE_CXX_FLAGS MATCHES "-std=" AND NOT CXX_STANDARD AND NOT CMAKE_CXX_STANDARD)
    # use C++11 by default if supported
    check_cxx_compiler_flag("-std=c++11" COMPILER_SUPPORTS_CXX11)
    if(COMPILER_SUPPORTS_CXX11)
      set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
    endif()
  endif()
  if(NOT CMAKE_C_FLAGS MATCHES "-std=" AND NOT C_STANDARD AND NOT CMAKE_C_STANDARD)
    check_c_compiler_flag("-std=c11" COMPILER_SUPPORTS_C11)
    if(COMPILER_SUPPORTS_C11)
      set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DEFAULT_SOURCE -std=c11")
    else()
      set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
    endif()
  endif()

  # clang 6 has a warning that does not make sense on multi-platform code
  check_cxx_compiler_flag("-Wno-tautological-constant-compare" CXX_HAS_TAUT_WARNING)
  if(CXX_HAS_TAUT_WARNING)
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-tautological-constant-compare")
  endif()
  check_c_compiler_flag("-Wno-tautological-constant-compare" CC_HAS_TAUT_WARNING)
  if(CC_HAS_TAUT_WARNING)
    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-tautological-constant-compare")
  endif()
endif()

# Will be used to add flags to pkg-config useful when apps want to statically link
set(pkg_config_libs_private "")
set(pkg_config_names_private "")
set(pkg_config_defines "")

option(WITH_OPENPGM "Build with support for OpenPGM" OFF)
option(WITH_NORM "Build with support for NORM" OFF)
option(WITH_VMCI "Build with support for VMware VMCI socket" OFF)

if(APPLE)
  option(ZMQ_BUILD_FRAMEWORK "Build as OS X framework" OFF)
endif()

if(EXISTS "${CMAKE_SOURCE_DIR}/.git")
  option(ENABLE_DRAFTS "Build and install draft classes and methods" ON)
else()
  option(ENABLE_DRAFTS "Build and install draft classes and methods" OFF)
endif()

# Enable WebSocket transport and RadixTree
if(ENABLE_DRAFTS)
  message(STATUS "Building draft classes and methods")
  option(ENABLE_WS "Enable WebSocket transport" ON)
  option(ENABLE_RADIX_TREE "Use radix tree implementation to manage subscriptions" ON)
  set(pkg_config_defines "-DZMQ_BUILD_DRAFT_API=1")
else()
  message(STATUS "Not building draft classes and methods")
  option(ENABLE_WS "Enable WebSocket transport" OFF)
  option(ENABLE_RADIX_TREE "Use radix tree implementation to manage subscriptions" OFF)
endif()

if(ENABLE_RADIX_TREE)
  message(STATUS "Using radix tree implementation to manage subscriptions")
  set(ZMQ_USE_RADIX_TREE 1)
endif()

if(ENABLE_WS)
  list(
    APPEND
    sources
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_address.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_connecter.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_decoder.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_encoder.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_engine.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_listener.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_address.hpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_connecter.hpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_decoder.hpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_encoder.hpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_engine.hpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_listener.hpp
    ${CMAKE_CURRENT_SOURCE_DIR}/src/ws_protocol.hpp)
  set(ZMQ_HAVE_WS 1)

  message(STATUS "Enable WebSocket transport")

  option(WITH_TLS "Use TLS for WSS support" ON)
  option(WITH_NSS "Use NSS instead of builtin sha1" OFF)

  if(WITH_TLS)
    find_package("GnuTLS" 3.6.7)
    if(GNUTLS_FOUND)
      set(pkg_config_names_private "${pkg_config_names_private} gnutls")
      list(APPEND sources ${CMAKE_CURRENT_SOURCE_DIR}/src/wss_address.hpp
           ${CMAKE_CURRENT_SOURCE_DIR}/src/wss_address.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/wss_engine.hpp
           ${CMAKE_CURRENT_SOURCE_DIR}/src/wss_engine.cpp)

      message(STATUS "Enable WSS transport")
      set(ZMQ_USE_GNUTLS 1)
      set(ZMQ_HAVE_WSS 1)
    else()
      message(WARNING "No WSS support, you may want to install GnuTLS and run cmake again")
    endif()
  endif()
endif()

if(NOT ZMQ_USE_GNUTLS)
  if(WITH_NSS)
    pkg_check_modules(NSS3 "nss")
    if(NSS3_FOUND)
      set(pkg_config_names_private "${pkg_config_names_private} nss")
      message(STATUS "Using NSS")
      set(ZMQ_USE_NSS 1)
    else()
      find_package("NSS3")
      if(NSS3_FOUND)
        set(pkg_config_libs_private "${pkg_config_libs_private} -lnss3")
        message(STATUS "Using NSS")
        set(ZMQ_USE_NSS 1)
      else()
        message(WARNING "No nss installed, if you don't want builtin SHA1, install NSS or GnuTLS")
      endif()
    endif()
  endif()
  if(ENABLE_WS AND NOT ZMQ_USE_NSS)
    list(APPEND sources ${CMAKE_CURRENT_SOURCE_DIR}/external/sha1/sha1.c
         ${CMAKE_CURRENT_SOURCE_DIR}/external/sha1/sha1.h)
    message(STATUS "Using builtin sha1")
    set(ZMQ_USE_BUILTIN_SHA1 1)
  endif()
endif()

if(NOT MSVC)
  option(WITH_LIBBSD "Use libbsd instead of builtin strlcpy" ON)
  if(WITH_LIBBSD)
    pkg_check_modules(LIBBSD "libbsd")
    if(LIBBSD_FOUND)
      message(STATUS "Using libbsd")
      set(pkg_config_names_private "${pkg_config_names_private} libbsd")
      set(ZMQ_HAVE_LIBBSD 1)
    endif()
  endif()
  check_cxx_symbol_exists(strlcpy string.h ZMQ_HAVE_STRLCPY)
endif()

# Select curve encryption library, defaults to disabled To use libsodium instead, use --with-libsodium(must be
# installed) To disable curve, use --disable-curve

option(WITH_LIBSODIUM "Use libsodium (required with ENABLE_CURVE)" OFF)
option(WITH_LIBSODIUM_STATIC "Use static libsodium library" OFF)
option(ENABLE_LIBSODIUM_RANDOMBYTES_CLOSE "Automatically close libsodium randombytes. Not threadsafe without getrandom()" ON)
option(ENABLE_CURVE "Enable CURVE security" OFF)

if(ENABLE_CURVE)
  # libsodium is currently the only CURVE provider
  if(WITH_LIBSODIUM)
    find_package("sodium")
    if(SODIUM_FOUND)
      message(STATUS "Using libsodium for CURVE security")
      include_directories(${SODIUM_INCLUDE_DIRS})
      link_directories(${SODIUM_LIBRARY_DIRS})
      if(WITH_LIBSODIUM_STATIC)
        add_compile_definitions(SODIUM_STATIC)
      endif()
      set(ZMQ_USE_LIBSODIUM 1)
      set(ZMQ_HAVE_CURVE 1)
      if (ENABLE_LIBSODIUM_RANDOMBYTES_CLOSE)
        set(ZMQ_LIBSODIUM_RANDOMBYTES_CLOSE 1)
      endif()
    else()
      message(
        FATAL_ERROR
          "libsodium requested but not found, you may want to install libsodium and run cmake again"
      )
    endif()
  else() # WITH_LIBSODIUM
    message(
      FATAL_ERROR
      "ENABLE_CURVE set, but not WITH_LIBSODIUM. No CURVE provider found."
      )
  endif()
else() # ENABLE_CURVE
  message(STATUS "CURVE security is disabled")
endif()

option(WITH_GSSAPI_KRB5 "Use libgssapi_krb5" OFF)
if(WITH_GSSAPI_KRB5)
  find_package("gssapi_krb5" REQUIRED)
  message(STATUS "Using GSSAPI_KRB5")
  include_directories(${GSSAPI_KRB5_INCLUDE_DIRS})
  link_directories(${GSSAPI_KRB5_LIBRARY_DIRS})
  set(HAVE_LIBGSSAPI_KRB5 1)
endif()


set(SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")

option(WITH_MILITANT "Enable militant assertions" OFF)
if(WITH_MILITANT)
  add_definitions(-DZMQ_ACT_MILITANT)
endif()

set(API_POLLER
    ""
    CACHE STRING "Choose polling system for zmq_poll(er)_*. valid values are
  poll or select [default=poll unless POLLER=select]")

set(POLLER
    ""
    CACHE STRING "Choose polling system for I/O threads. valid values are
  kqueue, epoll, devpoll, pollset, poll or select [default=autodetect]")

if(WIN32)
  if(CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" AND CMAKE_SYSTEM_VERSION MATCHES "^10.0")
    set(ZMQ_HAVE_WINDOWS_UWP ON)
    set(ZMQ_HAVE_IPC OFF)
    # to remove compile warninging "D9002 ignoring unknown option"
    string(REPLACE "/Zi" "" CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG})
    set(CMAKE_CXX_FLAGS_DEBUG
        ${CMAKE_CXX_FLAGS_DEBUG}
        CACHE STRING "" FORCE)
    string(REPLACE "/Zi" "" CMAKE_CXX_FLAGS_RELWITHDEBINFO ${CMAKE_CXX_FLAGS_RELWITHDEBINFO})
    set(CMAKE_CXX_FLAGS_RELWITHDEBINFO
        ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}
        CACHE STRING "" FORCE)
    string(REPLACE "/Zi" "" CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG})
  endif()
  # from https://stackoverflow.com/a/40217291/2019765
  macro(get_WIN32_WINNT version)
    if(CMAKE_SYSTEM_VERSION)
      set(ver ${CMAKE_SYSTEM_VERSION})
      string(REGEX MATCH "^([0-9]+).([0-9])" ver ${ver})
      string(REGEX MATCH "^([0-9]+)" verMajor ${ver})
      # Check for Windows 10, b/c we'll need to convert to hex 'A'.
      if("${verMajor}" MATCHES "10")
        set(verMajor "A")
        string(REGEX REPLACE "^([0-9]+)" ${verMajor} ver ${ver})
      endif("${verMajor}" MATCHES "10")
      # Remove all remaining '.' characters.
      string(REPLACE "." "" ver ${ver})
      # Prepend each digit with a zero.
      string(REGEX REPLACE "([0-9A-Z])" "0\\1" ver ${ver})
      set(${version} "0x${ver}")
    endif(CMAKE_SYSTEM_VERSION)
  endmacro(get_WIN32_WINNT)

  get_win32_winnt(ZMQ_WIN32_WINNT_DEFAULT)
  message(STATUS "Detected _WIN32_WINNT from CMAKE_SYSTEM_VERSION: ${ZMQ_WIN32_WINNT_DEFAULT}")

  # TODO limit _WIN32_WINNT to the actual Windows SDK version, which might be different from the default version
  # installed with Visual Studio
  if(MSVC_VERSION STREQUAL "1500" AND CMAKE_SYSTEM_VERSION VERSION_GREATER "6.0")
    set(ZMQ_WIN32_WINNT_LIMIT "0x0600")
  elseif(MSVC_VERSION STREQUAL "1600" AND CMAKE_SYSTEM_VERSION VERSION_GREATER "6.1")
    set(ZMQ_WIN32_WINNT_LIMIT "0x0601")
  elseif(MSVC_VERSION STREQUAL "1700" AND CMAKE_SYSTEM_VERSION VERSION_GREATER "6.1")
    set(ZMQ_WIN32_WINNT_LIMIT "0x0601")
  elseif(MSVC_VERSION STREQUAL "1800" AND CMAKE_SYSTEM_VERSION VERSION_GREATER "6.2")
    set(ZMQ_WIN32_WINNT_LIMIT "0x0602")
  endif()
  if(ZMQ_WIN32_WINNT_LIMIT)
    message(
      STATUS
        "Mismatch of Visual Studio Version (${MSVC_VERSION}) and CMAKE_SYSTEM_VERSION (${CMAKE_SYSTEM_VERSION}), limiting _WIN32_WINNT to ${ZMQ_WIN32_WINNT_LIMIT}, you may override this by setting ZMQ_WIN32_WINNT"
    )
    set(ZMQ_WIN32_WINNT_DEFAULT "${ZMQ_WIN32_WINNT_LIMIT}")
  endif()

  set(ZMQ_WIN32_WINNT
      "${ZMQ_WIN32_WINNT_DEFAULT}"
      CACHE STRING "Value to set _WIN32_WINNT to for building [default=autodetect from build environment]")

  # On Windows Vista or greater, with MSVC 2013 or greater, default to epoll (which is required on Win 10 for ipc
  # support)
  if(ZMQ_WIN32_WINNT GREATER "0x05FF"
     AND MSVC_VERSION GREATER 1799
     AND POLLER STREQUAL ""
     AND NOT ZMQ_HAVE_WINDOWS_UWP)
    set(POLLER "epoll")
  endif()

  add_definitions(-D_WIN32_WINNT=${ZMQ_WIN32_WINNT})
endif(WIN32)

if(NOT MSVC)
  if(POLLER STREQUAL "")
    check_cxx_symbol_exists(kqueue "sys/types.h;sys/event.h;sys/time.h" HAVE_KQUEUE)
    if(HAVE_KQUEUE)
      set(POLLER "kqueue")
    endif()
  endif()

  if(POLLER STREQUAL "")
    check_cxx_symbol_exists(epoll_create sys/epoll.h HAVE_EPOLL)
    if(HAVE_EPOLL)
      set(POLLER "epoll")
      check_cxx_symbol_exists(epoll_create1 sys/epoll.h HAVE_EPOLL_CLOEXEC)
      if(HAVE_EPOLL_CLOEXEC)
        set(ZMQ_IOTHREAD_POLLER_USE_EPOLL_CLOEXEC 1)
      endif()
    endif()
  endif()

  if(POLLER STREQUAL "")
    check_include_files("sys/devpoll.h" HAVE_DEVPOLL)
    if(HAVE_DEVPOLL)
      set(POLLER "devpoll")
    endif()
  endif()

  if(POLLER STREQUAL "")
    check_cxx_symbol_exists(pollset_create sys/pollset.h HAVE_POLLSET)
    if(HAVE_POLLSET)
      set(POLLER "pollset")
    endif()
  endif()

  if(POLLER STREQUAL "")
    check_cxx_symbol_exists(poll poll.h HAVE_POLL)
    if(HAVE_POLL)
      set(POLLER "poll")
    endif()
  endif()
endif()

if(POLLER STREQUAL "")
  if(WIN32)
    set(HAVE_SELECT 1)
  else()
    check_cxx_symbol_exists(select sys/select.h HAVE_SELECT)
  endif()
  if(HAVE_SELECT)
    set(POLLER "select")
  else()
    message(FATAL_ERROR "Could not autodetect polling method")
  endif()
endif()

if(POLLER STREQUAL "kqueue"
   OR POLLER STREQUAL "epoll"
   OR POLLER STREQUAL "devpoll"
   OR POLLER STREQUAL "pollset"
   OR POLLER STREQUAL "poll"
   OR POLLER STREQUAL "select")
  message(STATUS "Using polling method in I/O threads: ${POLLER}")
  string(TOUPPER ${POLLER} UPPER_POLLER)
  set(ZMQ_IOTHREAD_POLLER_USE_${UPPER_POLLER} 1)
else()
  message(FATAL_ERROR "Invalid polling method")
endif()

if(POLLER STREQUAL "epoll" AND WIN32)
  message(STATUS "Including wepoll")
  list(APPEND sources ${CMAKE_CURRENT_SOURCE_DIR}/external/wepoll/wepoll.c
       ${CMAKE_CURRENT_SOURCE_DIR}/external/wepoll/wepoll.h)
endif()

if(API_POLLER STREQUAL "")
  if(POLLER STREQUAL "select")
    set(API_POLLER "select")
  else()
    set(API_POLLER "poll")
  endif()
endif()

message(STATUS "Using polling method in zmq_poll(er)_* API: ${API_POLLER}")
string(TOUPPER ${API_POLLER} UPPER_API_POLLER)
set(ZMQ_POLL_BASED_ON_${UPPER_API_POLLER} 1)

check_cxx_symbol_exists(pselect sys/select.h HAVE_PSELECT)
if (NOT WIN32 AND HAVE_PSELECT)
  set(ZMQ_HAVE_PPOLL 1)
endif()

# special alignment settings
execute_process(
  COMMAND getconf LEVEL1_DCACHE_LINESIZE
  OUTPUT_VARIABLE CACHELINE_SIZE
  ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
if(CACHELINE_SIZE STREQUAL ""
   OR CACHELINE_SIZE STREQUAL "undefined"
   OR CACHELINE_SIZE EQUAL 0
   OR CACHELINE_SIZE EQUAL -1)
  set(ZMQ_CACHELINE_SIZE 64)
else()
  set(ZMQ_CACHELINE_SIZE ${CACHELINE_SIZE})
endif()
message(STATUS "Using ${ZMQ_CACHELINE_SIZE} bytes alignment for lock-free data structures")
check_cxx_symbol_exists(posix_memalign stdlib.h HAVE_POSIX_MEMALIGN)

if(NOT CYGWIN)
  # TODO cannot we simply do 'if(WIN32) set(ZMQ_HAVE_WINDOWS ON)' or similar?
  check_include_files(windows.h ZMQ_HAVE_WINDOWS)
endif()

if(NOT WIN32)
  set(ZMQ_HAVE_IPC 1)
  set(ZMQ_HAVE_STRUCT_SOCKADDR_UN 1)
else()
  check_include_files("winsock2.h;afunix.h" ZMQ_HAVE_IPC)
  if(ZMQ_HAVE_IPC)
    check_struct_has_member("struct sockaddr_un" sun_path "winsock2.h;afunix.h" ZMQ_HAVE_STRUCT_SOCKADDR_UN)
  endif()
endif()

# ##################### BEGIN condition_variable_t selection
if(NOT ZMQ_CV_IMPL)
  # prefer C++11 STL std::condition_variable implementation, if available
  check_include_files(condition_variable ZMQ_HAVE_STL_CONDITION_VARIABLE LANGUAGE CXX)

  if(ZMQ_HAVE_STL_CONDITION_VARIABLE)
    set(ZMQ_CV_IMPL_DEFAULT "stl11")
  else()
    if(WIN32 AND NOT CMAKE_SYSTEM_VERSION VERSION_LESS "6.0")
      # Win32API CONDITION_VARIABLE is supported from Windows Vista only
      set(ZMQ_CV_IMPL_DEFAULT "win32api")
    elseif(CMAKE_USE_PTHREADS_INIT)
      set(ZMQ_CV_IMPL_DEFAULT "pthreads")
    else()
      set(ZMQ_CV_IMPL_DEFAULT "none")
    endif()
  endif()

  # TODO a vxworks implementation also exists, but vxworks is not currently supported with cmake at all
  set(ZMQ_CV_IMPL
      "${ZMQ_CV_IMPL_DEFAULT}"
      CACHE STRING "Choose condition_variable_t implementation. Valid values are
       stl11, win32api, pthreads, none [default=autodetect]")
endif()

message(STATUS "Using condition_variable_t implementation: ${ZMQ_CV_IMPL}")
if(ZMQ_CV_IMPL STREQUAL "stl11")
  set(ZMQ_USE_CV_IMPL_STL11 1)
elseif(ZMQ_CV_IMPL STREQUAL "win32api")
  set(ZMQ_USE_CV_IMPL_WIN32API 1)
elseif(ZMQ_CV_IMPL STREQUAL "pthreads")
  set(ZMQ_USE_CV_IMPL_PTHREADS 1)
elseif(ZMQ_CV_IMPL STREQUAL "none")
  set(ZMQ_USE_CV_IMPL_NONE 1)
else()
  message(ERROR "Unknown value for ZMQ_CV_IMPL: ${ZMQ_CV_IMPL}")
endif()
# ##################### END condition_variable_t selection

if(NOT MSVC)
  check_include_files(ifaddrs.h ZMQ_HAVE_IFADDRS)
  check_include_files(sys/uio.h ZMQ_HAVE_UIO)
  check_include_files(sys/eventfd.h ZMQ_HAVE_EVENTFD)
  if(ZMQ_HAVE_EVENTFD AND NOT CMAKE_CROSSCOMPILING)
    zmq_check_efd_cloexec()
  endif()
endif()

if(ZMQ_HAVE_WINDOWS)
  # Cannot use check_library_exists because the symbol is always declared as char(*)(void)
  set(CMAKE_REQUIRED_LIBRARIES "ws2_32.lib")
  check_cxx_symbol_exists(WSAStartup "winsock2.h" HAVE_WS2_32)
  if(HAVE_WS2_32)
    set(pkg_config_libs_private "${pkg_config_libs_private} -lws2_32")
  endif()

  set(CMAKE_REQUIRED_LIBRARIES "rpcrt4.lib")
  check_cxx_symbol_exists(UuidCreateSequential "rpc.h" HAVE_RPCRT4)

  set(CMAKE_REQUIRED_LIBRARIES "iphlpapi.lib")
  check_cxx_symbol_exists(GetAdaptersAddresses "winsock2.h;iphlpapi.h" HAVE_IPHLAPI)
  if(HAVE_IPHLAPI)
    set(pkg_config_libs_private "${pkg_config_libs_private} -liphlpapi")
  endif()
  check_cxx_symbol_exists(if_nametoindex "iphlpapi.h" HAVE_IF_NAMETOINDEX)

  set(CMAKE_REQUIRED_LIBRARIES "")
  # TODO: This not the symbol we're looking for. What is the symbol?
  check_library_exists(ws2 fopen "" HAVE_WS2)
else()
  check_cxx_symbol_exists(if_nametoindex net/if.h HAVE_IF_NAMETOINDEX)
  check_cxx_symbol_exists(SO_PEERCRED sys/socket.h ZMQ_HAVE_SO_PEERCRED)
  check_cxx_symbol_exists(LOCAL_PEERCRED sys/socket.h ZMQ_HAVE_LOCAL_PEERCRED)
  check_cxx_symbol_exists(SO_BUSY_POLL sys/socket.h ZMQ_HAVE_BUSY_POLL)
endif()

if(NOT MINGW)
  find_library(RT_LIBRARY rt)
  if(RT_LIBRARY)
    set(pkg_config_libs_private "${pkg_config_libs_private} -lrt")

    set(CMAKE_REQUIRED_LIBRARIES rt)
    check_cxx_symbol_exists(clock_gettime time.h HAVE_CLOCK_GETTIME)
    set(CMAKE_REQUIRED_LIBRARIES)
  else()
    check_cxx_symbol_exists(clock_gettime time.h HAVE_CLOCK_GETTIME)
  endif()
endif()

find_package(Threads)

if(WIN32 AND NOT CYGWIN)
  if(NOT HAVE_WS2_32 AND NOT HAVE_WS2)
    message(FATAL_ERROR "Cannot link to ws2_32 or ws2")
  endif()

  if(NOT HAVE_RPCRT4)
    message(FATAL_ERROR "Cannot link to rpcrt4")
  endif()

  if(NOT HAVE_IPHLAPI)
    message(FATAL_ERROR "Cannot link to iphlapi")
  endif()
endif()

if(NOT MSVC)
  check_cxx_symbol_exists(fork unistd.h HAVE_FORK)
  check_cxx_symbol_exists(gethrtime sys/time.h HAVE_GETHRTIME)
  check_cxx_symbol_exists(mkdtemp "stdlib.h;unistd.h" HAVE_MKDTEMP)
  check_cxx_symbol_exists(accept4 sys/socket.h HAVE_ACCEPT4)
  check_cxx_symbol_exists(strnlen string.h HAVE_STRNLEN)
else()
  set(HAVE_STRNLEN 1)
endif()

add_definitions(-D_REENTRANT -D_THREAD_SAFE)
add_definitions(-DZMQ_CUSTOM_PLATFORM_HPP)

option(ENABLE_EVENTFD "Enable/disable eventfd" ZMQ_HAVE_EVENTFD)

macro(zmq_check_cxx_flag_prepend flag)
  check_cxx_compiler_flag("${flag}" HAVE_FLAG_${flag})

  if(HAVE_FLAG_${flag})
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}")
  endif()
endmacro()

option(ENABLE_ANALYSIS "Build with static analysis(make take very long)" OFF)

if(MSVC)
  if(ENABLE_ANALYSIS)
    zmq_check_cxx_flag_prepend("/W4")

    zmq_check_cxx_flag_prepend("/analyze")

    # C++11/14/17-specific, but maybe possible via conditional defines
    zmq_check_cxx_flag_prepend("/wd26440") # Function '...' can be declared 'noexcept'
    zmq_check_cxx_flag_prepend("/wd26432") # If you define or delete any default operation in the type '...', define or
                                           # delete them all
    zmq_check_cxx_flag_prepend("/wd26439") # This kind of function may not throw. Declare it 'noexcept'
    zmq_check_cxx_flag_prepend("/wd26447") # The function is declared 'noexcept' but calls function '...' which may
                                           # throw exceptions
    zmq_check_cxx_flag_prepend("/wd26433") # Function '...' should be marked with 'override'
    zmq_check_cxx_flag_prepend("/wd26409") # Avoid calling new and delete explicitly, use std::make_unique<T> instead
    # Requires GSL
    zmq_check_cxx_flag_prepend("/wd26429") # Symbol '...' is never tested for nullness, it can be marked as not_null
    zmq_check_cxx_flag_prepend("/wd26446") # Prefer to use gsl::at()
    zmq_check_cxx_flag_prepend("/wd26481") # Don't use pointer arithmetic. Use span instead
    zmq_check_cxx_flag_prepend("/wd26472") # Don't use a static_cast for arithmetic conversions. Use brace
                                           # initialization, gsl::narrow_cast or gsl::narow
    zmq_check_cxx_flag_prepend("/wd26448") # Consider using gsl::finally if final action is intended
    zmq_check_cxx_flag_prepend("/wd26400") # Do not assign the result of an allocation or a function call with an
                                           # owner<T> return value to a raw pointer, use owner<T> instead
    zmq_check_cxx_flag_prepend("/wd26485") # Expression '...': No array to pointer decay(bounds.3)
  else()
    zmq_check_cxx_flag_prepend("/W3")
  endif()

  if(MSVC_IDE)
    set(MSVC_TOOLSET "-${CMAKE_VS_PLATFORM_TOOLSET}")
  else()
    set(MSVC_TOOLSET "")
  endif()
else()
  zmq_check_cxx_flag_prepend("-Wall")
endif()

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
  zmq_check_cxx_flag_prepend("-Wextra")
endif()

option(LIBZMQ_PEDANTIC "" ON)
option(LIBZMQ_WERROR "" OFF)

# TODO: why is -Wno-long-long defined differently than in configure.ac?
if(NOT MSVC)
  zmq_check_cxx_flag_prepend("-Wno-long-long")
  zmq_check_cxx_flag_prepend("-Wno-uninitialized")

  if(LIBZMQ_PEDANTIC)
    zmq_check_cxx_flag_prepend("-pedantic")

    if(${CMAKE_CXX_COMPILER_ID} MATCHES "Intel")
      zmq_check_cxx_flag_prepend("-strict-ansi")
    endif()

    if(${CMAKE_CXX_COMPILER_ID} MATCHES "SunPro")
      zmq_check_cxx_flag_prepend("-compat=5")
    endif()
  endif()
endif()

if(LIBZMQ_WERROR)
  if(MSVC)
    zmq_check_cxx_flag_prepend("/WX")
  else()
    zmq_check_cxx_flag_prepend("-Werror")
    if(${CMAKE_CXX_COMPILER_ID} MATCHES "SunPro")
      zmq_check_cxx_flag_prepend("-errwarn=%all")
    endif()
  endif()
endif()

if(CMAKE_SYSTEM_PROCESSOR MATCHES "^sparc")
  zmq_check_cxx_flag_prepend("-mcpu=v9")
endif()

if(${CMAKE_CXX_COMPILER_ID} MATCHES "SunPro")
  zmq_check_cxx_flag_prepend("-features=zla")
endif()

if(CMAKE_SYSTEM_NAME MATCHES "SunOS"
   OR CMAKE_SYSTEM_NAME MATCHES "NetBSD"
   OR CMAKE_SYSTEM_NAME MATCHES "QNX")
  message(STATUS "Checking whether atomic operations can be used")
  check_c_source_compiles(
    "\
  #include <atomic.h> \
  \
  int main() \
  { \
    uint32_t value; \
    atomic_cas_32(&value, 0, 0); \
    return 0; \
  } \
  "
    HAVE_ATOMIC_H)

  if(NOT HAVE_ATOMIC_H)
    set(ZMQ_FORCE_MUTEXES 1)
  endif()
endif()

if(NOT ANDROID)
  zmq_check_noexcept()
endif()

# -----------------------------------------------------------------------------
if (NOT MSVC)
  # Compilation checks
  zmq_check_pthread_setname()
  zmq_check_pthread_setaffinity()
  # Execution checks
  if(NOT CMAKE_CROSSCOMPILING)
    zmq_check_sock_cloexec()
    zmq_check_o_cloexec()
    zmq_check_so_bindtodevice()
    zmq_check_so_keepalive()
    zmq_check_so_priority()
    zmq_check_tcp_keepcnt()
    zmq_check_tcp_keepidle()
    zmq_check_tcp_keepintvl()
    zmq_check_tcp_keepalive()
    zmq_check_tcp_tipc()
    zmq_check_getrandom()
  endif()
endif()

if(CMAKE_SYSTEM_NAME MATCHES "Linux"
   OR CMAKE_SYSTEM_NAME MATCHES "GNU/kFreeBSD"
   OR CMAKE_SYSTEM_NAME MATCHES "GNU/Hurd"
   OR CYGWIN)
  add_definitions(-D_GNU_SOURCE)
elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
  add_definitions(-D__BSD_VISIBLE)
elseif(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
  add_definitions(-D_NETBSD_SOURCE)
elseif(CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
  add_definitions(-D_OPENBSD_SOURCE)
elseif(CMAKE_SYSTEM_NAME MATCHES "SunOS")
  add_definitions(-D_PTHREADS)
elseif(CMAKE_SYSTEM_NAME MATCHES "HP-UX")
  add_definitions(-D_POSIX_C_SOURCE=200112L)
  zmq_check_cxx_flag_prepend(-Ae)
elseif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
  add_definitions(-D_DARWIN_C_SOURCE)
endif()

find_package(AsciiDoctor)

cmake_dependent_option(WITH_DOC "Build Reference Guide documentation(requires DocBook)" ON "ASCIIDOC_FOUND;NOT WIN32"
                       OFF) # Do not build docs on Windows due to issues with symlinks

if(MSVC)
  if(WITH_OPENPGM)
    # set(OPENPGM_ROOT "" CACHE PATH "Location of OpenPGM")
    set(OPENPGM_VERSION_MAJOR 5)
    set(OPENPGM_VERSION_MINOR 2)
    set(OPENPGM_VERSION_MICRO 122)
    if(CMAKE_CL_64)
      find_path(
        OPENPGM_ROOT include/pgm/pgm.h
        PATHS
          "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Miru\\OpenPGM ${OPENPGM_VERSION_MAJOR}.${OPENPGM_VERSION_MINOR}.${OPENPGM_VERSION_MICRO}]"
        NO_DEFAULT_PATH)
      message(STATUS "OpenPGM x64 detected - ${OPENPGM_ROOT}")
    else()
      find_path(
        OPENPGM_ROOT include/pgm/pgm.h
        PATHS
          "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Miru\\OpenPGM ${OPENPGM_VERSION_MAJOR}.${OPENPGM_VERSION_MINOR}.${OPENPGM_VERSION_MICRO}]"
          "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Miru\\OpenPGM ${OPENPGM_VERSION_MAJOR}.${OPENPGM_VERSION_MINOR}.${OPENPGM_VERSION_MICRO}]"
          NO_DEFAULT_PATH)
      message(STATUS "OpenPGM x86 detected - ${OPENPGM_ROOT}")
    endif()
    set(OPENPGM_INCLUDE_DIRS ${OPENPGM_ROOT}/include)
    set(OPENPGM_LIBRARY_DIRS ${OPENPGM_ROOT}/lib)
    set(OPENPGM_LIBRARIES
        optimized
        libpgm${MSVC_TOOLSET}-mt-${OPENPGM_VERSION_MAJOR}_${OPENPGM_VERSION_MINOR}_${OPENPGM_VERSION_MICRO}.lib debug
        libpgm${MSVC_TOOLSET}-mt-gd-${OPENPGM_VERSION_MAJOR}_${OPENPGM_VERSION_MINOR}_${OPENPGM_VERSION_MICRO}.lib)
  endif()
else()
  if(WITH_OPENPGM)
    # message(FATAL_ERROR "WITH_OPENPGM not implemented")

    if(NOT OPENPGM_PKGCONFIG_NAME)
      set(OPENPGM_PKGCONFIG_NAME "openpgm-5.2")
    endif()

    set(OPENPGM_PKGCONFIG_NAME
        ${OPENPGM_PKGCONFIG_NAME}
        CACHE STRING "Name pkg-config shall use to find openpgm libraries and include paths" FORCE)

    pkg_check_modules(OPENPGM ${OPENPGM_PKGCONFIG_NAME})

    if(OPENPGM_FOUND)
      message(STATUS ${OPENPGM_PKGCONFIG_NAME}" found")
      set(pkg_config_names_private "${pkg_config_names_private} ${OPENPGM_PKGCONFIG_NAME}")
    else()
      message(
        FATAL_ERROR
          ${OPENPGM_PKGCONFIG_NAME}"  not found. openpgm is searchd via `pkg-config ${OPENPGM_PKGCONFIG_NAME}`. Consider providing a valid OPENPGM_PKGCONFIG_NAME"
      )
    endif()

    # DSO symbol visibility for openpgm
    if(HAVE_FLAG_VISIBILITY_HIDDEN)

    elseif(HAVE_FLAG_LDSCOPE_HIDDEN)

    endif()
  endif()
endif()

# -----------------------------------------------------------------------------
# force off-tree build

if(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR})
  message(
    FATAL_ERROR
      "CMake generation is not allowed within the source directory! \
    Remove the CMakeCache.txt file and try again from another folder, e.g.: \
    \
      rm CMakeCache.txt \
      mkdir cmake-make \
      cd cmake-make \
      cmake ..")
endif()

# -----------------------------------------------------------------------------
# default to Release build

if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
  # CMAKE_BUILD_TYPE is not used for multi-configuration generators like Visual Studio/XCode which instead use
  # CMAKE_CONFIGURATION_TYPES
  set(CMAKE_BUILD_TYPE
      Release
      CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE)
endif()

# -----------------------------------------------------------------------------
# output directories

zmq_set_with_default(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${ZeroMQ_BINARY_DIR}/bin")
if(UNIX)
  set(zmq_library_directory "lib")
else()
  set(zmq_library_directory "bin")
endif()
zmq_set_with_default(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${ZeroMQ_BINARY_DIR}/${zmq_library_directory}")
zmq_set_with_default(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${ZeroMQ_BINARY_DIR}/lib")

# -----------------------------------------------------------------------------
# platform specifics

if(WIN32)
  # Socket limit is 16K(can be raised arbitrarily)
  add_definitions(-DFD_SETSIZE=16384)
  add_definitions(-D_CRT_SECURE_NO_WARNINGS)
  add_definitions(-D_WINSOCK_DEPRECATED_NO_WARNINGS)
endif()

if(MSVC)
  # Parallel make.
  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP")

  # Compile the static lib with debug information included note: we assume here that the default flags contain some /Z
  # flag
  string(REGEX REPLACE "/Z.[^:]" "/Z7 " CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
  string(REGEX REPLACE "/Z.[^:]" "/Z7 " CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")

endif()

# -----------------------------------------------------------------------------
# source files

set(cxx-sources
    precompiled.cpp
    address.cpp
    channel.cpp
    client.cpp
    clock.cpp
    ctx.cpp
    curve_mechanism_base.cpp
    curve_client.cpp
    curve_server.cpp
    dealer.cpp
    devpoll.cpp
    dgram.cpp
    dist.cpp
    endpoint.cpp
    epoll.cpp
    err.cpp
    fq.cpp
    io_object.cpp
    io_thread.cpp
    ip.cpp
    ipc_address.cpp
    ipc_connecter.cpp
    ipc_listener.cpp
    kqueue.cpp
    lb.cpp
    mailbox.cpp
    mailbox_safe.cpp
    mechanism.cpp
    mechanism_base.cpp
    metadata.cpp
    msg.cpp
    mtrie.cpp
    norm_engine.cpp
    object.cpp
    options.cpp
    own.cpp
    null_mechanism.cpp
    pair.cpp
    peer.cpp
    pgm_receiver.cpp
    pgm_sender.cpp
    pgm_socket.cpp
    pipe.cpp
    plain_client.cpp
    plain_server.cpp
    poll.cpp
    poller_base.cpp
    polling_util.cpp
    pollset.cpp
    proxy.cpp
    pub.cpp
    pull.cpp
    push.cpp
    random.cpp
    raw_encoder.cpp
    raw_decoder.cpp
    raw_engine.cpp
    reaper.cpp
    rep.cpp
    req.cpp
    router.cpp
    select.cpp
    server.cpp
    session_base.cpp
    signaler.cpp
    socket_base.cpp
    socks.cpp
    socks_connecter.cpp
    stream.cpp
    stream_engine_base.cpp
    sub.cpp
    tcp.cpp
    tcp_address.cpp
    tcp_connecter.cpp
    tcp_listener.cpp
    thread.cpp
    trie.cpp
    radix_tree.cpp
    v1_decoder.cpp
    v1_encoder.cpp
    v2_decoder.cpp
    v2_encoder.cpp
    v3_1_encoder.cpp
    xpub.cpp
    xsub.cpp
    zmq.cpp
    zmq_utils.cpp
    decoder_allocators.cpp
    socket_poller.cpp
    timers.cpp
    config.hpp
    radio.cpp
    dish.cpp
    udp_engine.cpp
    udp_address.cpp
    scatter.cpp
    gather.cpp
    ip_resolver.cpp
    zap_client.cpp
    zmtp_engine.cpp
    # at least for VS, the header files must also be listed
    address.hpp
    array.hpp
    atomic_counter.hpp
    atomic_ptr.hpp
    blob.hpp
    channel.hpp
    client.hpp
    clock.hpp
    command.hpp
    compat.hpp
    condition_variable.hpp
    config.hpp
    ctx.hpp
    curve_client.hpp
    curve_client_tools.hpp
    curve_mechanism_base.hpp
    curve_server.hpp
    dbuffer.hpp
    dealer.hpp
    decoder.hpp
    decoder_allocators.hpp
    devpoll.hpp
    dgram.hpp
    dish.hpp
    dist.hpp
    encoder.hpp
    endpoint.hpp
    epoll.hpp
    err.hpp
    fd.hpp
    fq.hpp
    gather.hpp
    generic_mtrie.hpp
    generic_mtrie_impl.hpp
    gssapi_client.hpp
    gssapi_mechanism_base.hpp
    gssapi_server.hpp
    i_decoder.hpp
    i_encoder.hpp
    i_engine.hpp
    i_mailbox.hpp
    i_poll_events.hpp
    io_object.hpp
    io_thread.hpp
    ip.hpp
    ipc_address.hpp
    ipc_connecter.hpp
    ipc_listener.hpp
    kqueue.hpp
    lb.hpp
    likely.hpp
    macros.hpp
    mailbox.hpp
    mailbox_safe.hpp
    mechanism.hpp
    mechanism_base.hpp
    metadata.hpp
    msg.hpp
    mtrie.hpp
    mutex.hpp
    norm_engine.hpp
    null_mechanism.hpp
    object.hpp
    options.hpp
    own.hpp
    pair.hpp
    peer.hpp
    pgm_receiver.hpp
    pgm_sender.hpp
    pgm_socket.hpp
    pipe.hpp
    plain_client.hpp
    plain_common.hpp
    plain_server.hpp
    poll.hpp
    poller.hpp
    poller_base.hpp
    polling_util.hpp
    pollset.hpp
    precompiled.hpp
    proxy.hpp
    pub.hpp
    pull.hpp
    push.hpp
    radio.hpp
    random.hpp
    raw_decoder.hpp
    raw_encoder.hpp
    raw_engine.hpp
    reaper.hpp
    rep.hpp
    req.hpp
    router.hpp
    scatter.hpp
    secure_allocator.hpp
    select.hpp
    server.hpp
    session_base.hpp
    signaler.hpp
    socket_base.hpp
    socket_poller.hpp
    socks.hpp
    socks_connecter.hpp
    stdint.hpp
    stream.hpp
    stream_engine_base.hpp
    stream_connecter_base.hpp
    stream_connecter_base.cpp
    stream_listener_base.hpp
    stream_listener_base.cpp
    sub.hpp
    tcp.hpp
    tcp_address.hpp
    tcp_connecter.hpp
    tcp_listener.hpp
    thread.hpp
    timers.hpp
    tipc_address.hpp
    tipc_connecter.hpp
    tipc_listener.hpp
    trie.hpp
    udp_address.hpp
    udp_engine.hpp
    v1_decoder.hpp
    v1_encoder.hpp
    v2_decoder.hpp
    v2_encoder.hpp
    v3_1_encoder.hpp
    v2_protocol.hpp
    vmci.hpp
    vmci_address.hpp
    vmci_connecter.hpp
    vmci_listener.hpp
    vsock_address.hpp
    vsock_connecter.hpp
    vsock_listener.hpp
    windows.hpp
    wire.hpp
    xpub.hpp
    xsub.hpp
    ypipe.hpp
    ypipe_base.hpp
    ypipe_conflate.hpp
    yqueue.hpp
    zap_client.hpp
    zmtp_engine.hpp)

if(MINGW)
  # Generate the right type when using -m32 or -m64
  macro(set_rc_arch rc_target)
    set(CMAKE_RC_COMPILER_INIT windres)
    enable_language(RC)
    set(CMAKE_RC_COMPILE_OBJECT
        "<CMAKE_RC_COMPILER> <FLAGS> -O coff --target=${rc_target} <DEFINES> -i <SOURCE> -o <OBJECT>")
  endmacro()

  if(NOT CMAKE_SYSTEM_PROCESSOR)
    set(CMAKE_SYSTEM_PROCESSOR ${CMAKE_HOST_SYSTEM_PROCESSOR})
  endif()

  # Also happens on x86_64 systems...what a worthless variable
  if(CMAKE_SYSTEM_PROCESSOR MATCHES "i386"
     OR CMAKE_SYSTEM_PROCESSOR MATCHES "i486"
     OR CMAKE_SYSTEM_PROCESSOR MATCHES "i586"
     OR CMAKE_SYSTEM_PROCESSOR MATCHES "i686"
     OR CMAKE_SYSTEM_PROCESSOR MATCHES "x86"
     OR CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64"
     OR CMAKE_SYSTEM_PROCESSOR MATCHES "amd64")

    if(CMAKE_SIZEOF_VOID_P EQUAL 8)
      set_rc_arch("pe-x86-64")
    else()
      set_rc_arch("pe-i386")
    endif()
  endif()
endif()

set(public_headers include/zmq.h include/zmq_utils.h)

set(readme-docs AUTHORS LICENSE NEWS)

# -----------------------------------------------------------------------------
# optional modules

if(WITH_OPENPGM)
  message(STATUS "Building with OpenPGM")
  set(ZMQ_HAVE_OPENPGM 1)
  include_directories(${OPENPGM_INCLUDE_DIRS})
  link_directories(${OPENPGM_LIBRARY_DIRS})
  set(OPTIONAL_LIBRARIES ${OPENPGM_LIBRARIES})
endif()

if(WITH_NORM)
  find_package(norm)
    if(norm_FOUND)
      message(STATUS "Building with NORM")
      set(ZMQ_HAVE_NORM 1)
    else()
      message(FATAL_ERROR "NORM not found")
    endif()
endif()

if(WITH_VMCI)
message(STATUS "Building with VMCI")
  set(ZMQ_HAVE_VMCI 1)
  include_directories(${VMCI_INCLUDE_DIRS})
  list(APPEND cxx-sources vmci_address.cpp vmci_connecter.cpp vmci_listener.cpp vmci.cpp)
endif()

if(ZMQ_HAVE_VSOCK)
  list(APPEND cxx-sources vsock_address.cpp vsock_connecter.cpp vsock_listener.cpp)
endif()

if(ZMQ_HAVE_TIPC)
  list(APPEND cxx-sources tipc_address.cpp tipc_connecter.cpp tipc_listener.cpp)
endif()

if(WITH_GSSAPI_KRB5)
  list(APPEND cxx-sources gssapi_client.cpp gssapi_mechanism_base.cpp gssapi_server.cpp)
endif()

# -----------------------------------------------------------------------------
# source generators

foreach(source ${cxx-sources})
  list(APPEND sources ${CMAKE_CURRENT_SOURCE_DIR}/src/${source})
endforeach()

configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/version.rc.in ${CMAKE_CURRENT_BINARY_DIR}/version.rc)

# Delete any src/platform.hpp left by configure
file(REMOVE ${CMAKE_CURRENT_SOURCE_DIR}/src/platform.hpp)

configure_file(${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/platform.hpp.in ${CMAKE_CURRENT_BINARY_DIR}/platform.hpp)
list(APPEND sources ${CMAKE_CURRENT_BINARY_DIR}/platform.hpp)

set(prefix ${CMAKE_INSTALL_PREFIX})
set(exec_prefix "\${prefix}")
set(libdir "\${prefix}/${CMAKE_INSTALL_LIBDIR}")
set(includedir "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}")
set(VERSION ${ZMQ_VERSION_MAJOR}.${ZMQ_VERSION_MINOR}.${ZMQ_VERSION_PATCH})
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/libzmq.pc.in ${CMAKE_CURRENT_BINARY_DIR}/libzmq.pc @ONLY)
set(zmq-pkgconfig ${CMAKE_CURRENT_BINARY_DIR}/libzmq.pc)

if(NOT ZMQ_BUILD_FRAMEWORK)
  install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libzmq.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
endif()

if(MSVC)
  if(CMAKE_CL_64)
    set(nsis-template ${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/NSIS.template64.in)
  else()
    set(nsis-template ${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/NSIS.template32.in)
  endif()

  add_custom_command(
    OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/NSIS.template.in
    COMMAND ${CMAKE_COMMAND} ARGS -E copy ${nsis-template} ${CMAKE_CURRENT_BINARY_DIR}/NSIS.template.in
    DEPENDS ${nsis-template})
endif()

option(WITH_DOCS "Build html docs" ON)
if(WITH_DOCS)
  file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doc)
  file(
    GLOB asciidoc_files
    RELATIVE ${CMAKE_CURRENT_BINARY_DIR}/
    "${CMAKE_CURRENT_SOURCE_DIR}/doc/*.adoc")
  string(REPLACE ".txt" ".html" html_files ${asciidoc_files})
  add_custom_command(
    OUTPUT ${html_files}
    COMMAND asciidoctor -b html -azmq_version=${ZMQ_VERSION} *.adoc
    DEPENDS ${asciidoc_files}
    WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
    COMMENT "Generating ${html}")
endif()

if(ZMQ_BUILD_FRAMEWORK)
  add_custom_command(
    TARGET libzmq
    POST_BUILD
    COMMAND ${CMAKE_COMMAND} ARGS -E make_directory
            "${CMAKE_LIBRARY_OUTPUT_PATH}/ZeroMQ.framework/Versions/${ZMQ_VERSION}/MacOS"
    COMMENT "Perf tools")
endif()

option(ENABLE_PRECOMPILED "Enable precompiled headers, if possible" ON)
if(MSVC AND ENABLE_PRECOMPILED)
  # default for all sources is to use precompiled headers
  foreach(source ${sources})
    # C and C++ can not use the same precompiled header
    if(${source} MATCHES ".cpp$" AND NOT ${source} STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}/src/precompiled.cpp")
      set_source_files_properties(${source} PROPERTIES COMPILE_FLAGS "/Yuprecompiled.hpp" OBJECT_DEPENDS
                                                                                          precompiled.hpp)
    endif()
  endforeach()
  # create precompiled header
  set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/src/precompiled.cpp
                              PROPERTIES COMPILE_FLAGS "/Ycprecompiled.hpp" OBJECT_OUTPUTS precompiled.hpp)
endif()

# -----------------------------------------------------------------------------
# output
option(BUILD_SHARED "Whether or not to build the shared object" ON)
option(BUILD_STATIC "Whether or not to build the static archive" ON)

if(MSVC)
  # Suppress linker warnings caused by #ifdef omission of file content.
  set(CMAKE_STATIC_LINKER_FLAGS "${CMAKE_STATIC_LINKER_FLAGS} /ignore:4221")
  set(PDB_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin")
  set(PDB_NAME
      "lib${ZMQ_OUTPUT_BASENAME}${MSVC_TOOLSET}-mt-gd-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}")
  function(enable_vs_guideline_checker target)
    set_target_properties(
      ${target} PROPERTIES VS_GLOBAL_EnableCppCoreCheck true VS_GLOBAL_CodeAnalysisRuleSet CppCoreCheckRules.ruleset
                           VS_GLOBAL_RunCodeAnalysis true)
  endfunction()
  if(BUILD_SHARED)
    # Whole Program Optimization flags. http://msdn.microsoft.com/en-us/magazine/cc301698.aspx
    #
    # "Finally, there's the subject of libraries. It's possible to create .LIB 
    # files with code in its IL form. The linker will happily work with these 
    # .LIB files. Be aware that these libraries will be tied to a specific 
    # version of the compiler and linker. If you distribute these libraries, 
    # you'll need to update them if Microsoft changes the format of IL in a 
    # future release."
    # 
    # /GL and /LTCG can cause problems when libraries built with different 
    # versions of compiler are later linked into an executable while /LTCG is active. 
    # https://social.msdn.microsoft.com/Forums/vstudio/en-US/5c102025-c254-4f02-9a51-c775c6cc9f4b/problem-with-ltcg-when-building-a-static-library-in-vs2005?forum=vcgeneral
    #
    # For this reason, enable only when building a "Release" (e.g. non-DEBUG) DLL.
    if(NOT ${CMAKE_BUILD_TYPE} MATCHES "Debug")
      set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /GL")
      set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LTCG")
      set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /LTCG")
      set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} /LTCG")
    endif()

    add_library(libzmq SHARED ${sources} ${public_headers} ${html-docs} ${readme-docs}
                              ${CMAKE_CURRENT_BINARY_DIR}/NSIS.template.in ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
    if(ENABLE_ANALYSIS)
      enable_vs_guideline_checker(libzmq)
    endif()
    set_target_properties(
      libzmq
      PROPERTIES PUBLIC_HEADER "${public_headers}"
                 RELEASE_POSTFIX "${MSVC_TOOLSET}-mt-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 RELWITHDEBINFO_POSTFIX
                 "${MSVC_TOOLSET}-mt-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 MINSIZEREL_POSTFIX "${MSVC_TOOLSET}-mt-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 DEBUG_POSTFIX "${MSVC_TOOLSET}-mt-gd-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 RUNTIME_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
                 COMPILE_DEFINITIONS "DLL_EXPORT"
                 OUTPUT_NAME "lib${ZMQ_OUTPUT_BASENAME}")
    if(ZMQ_HAVE_WINDOWS_UWP)
      set_target_properties(libzmq PROPERTIES LINK_FLAGS_DEBUG "/OPT:NOICF /OPT:NOREF")
    endif()
  endif()

  if(BUILD_STATIC)
    add_library(libzmq-static STATIC ${sources} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
    set_target_properties(
      libzmq-static
      PROPERTIES PUBLIC_HEADER "${public_headers}"
                 RELEASE_POSTFIX "${MSVC_TOOLSET}-mt-s-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 RELWITHDEBINFO_POSTFIX
                 "${MSVC_TOOLSET}-mt-s-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 MINSIZEREL_POSTFIX
                 "${MSVC_TOOLSET}-mt-s-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 DEBUG_POSTFIX "${MSVC_TOOLSET}-mt-sgd-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
                 COMPILE_FLAGS "/DZMQ_STATIC"
                 OUTPUT_NAME "lib${ZMQ_OUTPUT_BASENAME}")
  endif()
else()
  # avoid building everything twice for shared + static only on *nix, as Windows needs different preprocessor defines in
  # static builds
  if(NOT MINGW)
    add_library(objects OBJECT ${sources})
    set_property(TARGET objects PROPERTY POSITION_INDEPENDENT_CODE ON)
    if(GNUTLS_FOUND)
      target_include_directories(objects PRIVATE "${GNUTLS_INCLUDE_DIR}")
    endif()
  endif()

  if(BUILD_SHARED)
    if(MINGW)
      add_library(libzmq SHARED ${sources} ${public_headers} ${html-docs} ${readme-docs} ${zmq-pkgconfig}
                                ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
    else()
        if (CMAKE_GENERATOR STREQUAL "Xcode")
           add_library(libzmq SHARED ${sources} ${public_headers} ${html-docs} ${readme-docs}
                                     ${zmq-pkgconfig} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
        else()
           add_library(libzmq SHARED $<TARGET_OBJECTS:objects> ${public_headers} ${html-docs} ${readme-docs}
                                     ${zmq-pkgconfig} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
        endif()

    endif()
    # NOTE: the SOVERSION and VERSION MUST be the same as the one generated by libtool! It is NOT the same as the
    # version of the package.
    set_target_properties(
      libzmq PROPERTIES COMPILE_DEFINITIONS "DLL_EXPORT" PUBLIC_HEADER "${public_headers}" VERSION "5.2.6"
                        SOVERSION "5" OUTPUT_NAME "${ZMQ_OUTPUT_BASENAME}" PREFIX "lib")
    if(ZMQ_BUILD_FRAMEWORK)
      set_target_properties(
        libzmq
        PROPERTIES FRAMEWORK TRUE MACOSX_FRAMEWORK_IDENTIFIER "org.zeromq.libzmq" MACOSX_FRAMEWORK_SHORT_VERSION_STRING
                                                                                  ${ZMQ_VERSION}
                   MACOSX_FRAMEWORK_BUNDLE_VERSION ${ZMQ_VERSION})
      set_source_files_properties(${html-docs} PROPERTIES MACOSX_PACKAGE_LOCATION doc)
      set_source_files_properties(${readme-docs} PROPERTIES MACOSX_PACKAGE_LOCATION etc)
      set_source_files_properties(${zmq-pkgconfig} PROPERTIES MACOSX_PACKAGE_LOCATION lib/pkgconfig)
    endif()
  endif()

  if(BUILD_STATIC)
    if(MINGW)
      add_library(libzmq-static STATIC ${sources} ${public_headers} ${html-docs} ${readme-docs} ${zmq-pkgconfig}
                                       ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
    else()
      if (CMAKE_GENERATOR STREQUAL "Xcode")
        add_library(libzmq-static STATIC ${sources} ${public_headers} ${html-docs} ${readme-docs}
                                         ${zmq-pkgconfig} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
      else()
        add_library(libzmq-static STATIC $<TARGET_OBJECTS:objects> ${public_headers} ${html-docs} ${readme-docs}
                                         ${zmq-pkgconfig} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
      endif()
    endif()
    if(CMAKE_SYSTEM_NAME MATCHES "QNX")
      target_link_libraries(libzmq-static m)
    endif()
    set_target_properties(
      libzmq-static PROPERTIES PUBLIC_HEADER "${public_headers}" OUTPUT_NAME "${ZMQ_OUTPUT_BASENAME}" PREFIX "lib")
  endif()
endif()

if(BUILD_STATIC)
  target_compile_definitions(libzmq-static PUBLIC ZMQ_STATIC)
endif()

list(APPEND target_outputs "")

if(BUILD_SHARED)
  list(APPEND target_outputs "libzmq")
endif()

if(BUILD_STATIC)
  list(APPEND target_outputs "libzmq-static")
endif()

set(build_targets ${target_outputs})
if(TARGET objects)
  list(APPEND build_targets "objects")
endif()

foreach(target ${build_targets})
  target_include_directories(
    ${target} PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
                     $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}> $<INSTALL_INTERFACE:include>)

  if(ENABLE_DRAFTS)
    target_compile_definitions(${target} PUBLIC ZMQ_BUILD_DRAFT_API)
  endif()
endforeach()

if(BUILD_SHARED)
  target_link_libraries(libzmq ${CMAKE_THREAD_LIBS_INIT})

  if(QNX)
    target_link_libraries(libzmq -lsocket)
  endif()

  if(GNUTLS_FOUND)
    target_link_libraries(libzmq ${GNUTLS_LIBRARIES})
    target_include_directories(libzmq PRIVATE "${GNUTLS_INCLUDE_DIR}")
  endif()

  if(NSS3_FOUND)
    target_link_libraries(libzmq ${NSS3_LIBRARIES})
  endif()

  if(LIBBSD_FOUND)
    target_link_libraries(libzmq ${LIBBSD_LIBRARIES})
  endif()

  if(SODIUM_FOUND)
    target_link_libraries(libzmq ${SODIUM_LIBRARIES})
    # On Solaris, libsodium depends on libssp
    if(${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
      target_link_libraries(libzmq ssp)
    endif()
  endif()

  if(WITH_GSSAPI_KRB5)
    target_link_libraries(libzmq ${GSSAPI_KRB5_LIBRARIES})
  endif()

  if(HAVE_WS2_32)
    target_link_libraries(libzmq ws2_32)
  elseif(HAVE_WS2)
    target_link_libraries(libzmq ws2)
  endif()

  if(HAVE_RPCRT4)
    target_link_libraries(libzmq rpcrt4)
  endif()

  if(HAVE_IPHLAPI)
    target_link_libraries(libzmq iphlpapi)
  endif()

  if(RT_LIBRARY)
    target_link_libraries(libzmq -lrt)
  endif()

  if(norm_FOUND)
      target_link_libraries(libzmq norm::norm)
  endif()

  if(OPENPGM_FOUND)
      target_link_libraries(libzmq ${OPENPGM_LIBRARIES})
  endif()
endif()

if(BUILD_STATIC)
  target_link_libraries(libzmq-static ${CMAKE_THREAD_LIBS_INIT})
  if(GNUTLS_FOUND)
    target_link_libraries(libzmq-static ${GNUTLS_LIBRARIES})
    target_include_directories(libzmq-static PRIVATE "${GNUTLS_INCLUDE_DIR}")
  endif()

  if(LIBBSD_FOUND)
    target_link_libraries(libzmq-static ${LIBBSD_LIBRARIES})
  endif()

  if(NSS3_FOUND)
    target_link_libraries(libzmq-static ${NSS3_LIBRARIES})
  endif()

  if(SODIUM_FOUND)
    target_link_libraries(libzmq-static ${SODIUM_LIBRARIES})
    # On Solaris, libsodium depends on libssp
    if(${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
      target_link_libraries(libzmq-static ssp)
    endif()
  endif()

  if(WITH_GSSAPI_KRB5)
    target_link_libraries(libzmq-static ${GSSAPI_KRB5_LIBRARIES})
  endif()

  if(HAVE_WS2_32)
    target_link_libraries(libzmq-static ws2_32)
  elseif(HAVE_WS2)
    target_link_libraries(libzmq-static ws2)
  endif()

  if(HAVE_RPCRT4)
    target_link_libraries(libzmq-static rpcrt4)
  endif()

  if(HAVE_IPHLAPI)
    target_link_libraries(libzmq-static iphlpapi)
  endif()

  if(RT_LIBRARY)
    target_link_libraries(libzmq-static -lrt)
  endif()

  if(CMAKE_SYSTEM_NAME MATCHES "QNX")
    add_definitions(-DUNITY_EXCLUDE_MATH_H)
  endif()

  if(norm_FOUND)
      target_link_libraries(libzmq-static norm::norm)
  endif()

  if(OPENPGM_FOUND)
      target_link_libraries(libzmq-static ${OPENPGM_LIBRARIES})
  endif()
endif()

if(BUILD_SHARED)
  set(perf-tools
      local_lat
      remote_lat
      local_thr
      remote_thr
      inproc_lat
      inproc_thr
      proxy_thr)

  if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug") # Why?
    option(WITH_PERF_TOOL "Build with perf-tools" ON)
  else()
    option(WITH_PERF_TOOL "Build with perf-tools" OFF)
  endif()

  if(WITH_PERF_TOOL)
    foreach(perf-tool ${perf-tools})
      add_executable(${perf-tool} perf/${perf-tool}.cpp)
      target_link_libraries(${perf-tool} libzmq)

      if(GNUTLS_FOUND)
        target_link_libraries(${perf-tool} ${GNUTLS_LIBRARIES})
        target_include_directories(${perf-tool} PRIVATE "${GNUTLS_INCLUDE_DIR}")
      endif()

      if(LIBBSD_FOUND)
        target_link_libraries(${perf-tool} ${LIBBSD_LIBRARIES})
      endif()

      if(NSS3_FOUND)
        target_link_libraries(${perf-tool} ${NSS3_LIBRARIES})
      endif()

      if(SODIUM_FOUND)
        target_link_libraries(${perf-tool} ${SODIUM_LIBRARIES})
      endif()

      if(WITH_GSSAPI_KRB5)
        target_link_libraries(${perf-tool} ${GSSAPI_KRB5_LIBRARIES})
      endif()

      if(ZMQ_BUILD_FRAMEWORK)
        # Copy perf-tools binaries into Framework
        add_custom_command(
          TARGET libzmq
          ${perf-tool} POST_BUILD
          COMMAND ${CMAKE_COMMAND} ARGS -E copy "$<TARGET_FILE:${perf-tool}>"
                  "${LIBRARY_OUTPUT_PATH}/ZeroMQ.framework/Versions/${ZMQ_VERSION_STRING}/MacOS/${perf-tool}"
          VERBATIM
          COMMENT "Perf tools")
      else()
        install(TARGETS ${perf-tool} RUNTIME DESTINATION bin COMPONENT PerfTools)
      endif()
      if(ZMQ_HAVE_WINDOWS_UWP)
        set_target_properties(${perf-tool} PROPERTIES LINK_FLAGS_DEBUG "/OPT:NOICF /OPT:NOREF")
      endif()
    endforeach()

    if(BUILD_STATIC)
      add_executable(benchmark_radix_tree perf/benchmark_radix_tree.cpp)
      target_link_libraries(benchmark_radix_tree libzmq-static)
      target_include_directories(benchmark_radix_tree PUBLIC "${CMAKE_CURRENT_LIST_DIR}/src")
      if(ZMQ_HAVE_WINDOWS_UWP)
        set_target_properties(benchmark_radix_tree PROPERTIES LINK_FLAGS_DEBUG "/OPT:NOICF /OPT:NOREF")
      endif()
    endif()
  elseif(WITH_PERF_TOOL)
    message(FATAL_ERROR "Shared library disabled - perf-tools unavailable.")
  endif()
endif()

# -----------------------------------------------------------------------------
# tests

if(${CMAKE_VERSION} VERSION_LESS 3.12.3)
  option(BUILD_TESTS "Whether or not to build the tests" OFF)
else()
  option(BUILD_TESTS "Whether or not to build the tests" ON)
endif()

set(ZMQ_BUILD_TESTS
    ${BUILD_TESTS}
    CACHE BOOL "Build the tests for ZeroMQ")

if(ZMQ_BUILD_TESTS)
  enable_testing() # Enable testing only works in root scope
  add_subdirectory(tests)
  if(BUILD_STATIC)
    add_subdirectory(unittests)
  else()
    message(WARNING "Not building unit tests, since BUILD_STATIC is not enabled")
  endif()
endif()

# -----------------------------------------------------------------------------
# installer

if(MSVC AND (BUILD_SHARED OR BUILD_STATIC))
  install(
    TARGETS ${target_outputs}
    EXPORT ${PROJECT_NAME}-targets
    ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
    PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} COMPONENT SDK)
  if(MSVC_IDE)
    install(
      FILES ${PDB_OUTPUT_DIRECTORY}/\${CMAKE_INSTALL_CONFIG_NAME}/${PDB_NAME}.pdb
      DESTINATION ${CMAKE_INSTALL_BINDIR}
      COMPONENT SDK
      OPTIONAL)
  else()
    install(
      FILES ${PDB_OUTPUT_DIRECTORY}/${PDB_NAME}.pdb
      DESTINATION ${CMAKE_INSTALL_BINDIR}
      COMPONENT SDK
      OPTIONAL)
  endif()
  if(BUILD_SHARED)
    install(
      TARGETS libzmq
      RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
      PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} COMPONENT Runtime)
  endif()
elseif(BUILD_SHARED OR BUILD_STATIC)
  install(
    TARGETS ${target_outputs}
    EXPORT ${PROJECT_NAME}-targets
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
    ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
    FRAMEWORK DESTINATION "Library/Frameworks"
    PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
endif()

foreach(readme ${readme-docs})
  configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${readme} ${CMAKE_CURRENT_BINARY_DIR}/${readme}.txt)

  if(NOT ZMQ_BUILD_FRAMEWORK)
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${readme}.txt DESTINATION share/zmq)
  endif()
endforeach()

if(WITH_DOC)
  if(NOT ZMQ_BUILD_FRAMEWORK)
    install(
      FILES ${html-docs}
      DESTINATION doc/zmq
      COMPONENT RefGuide)
  endif()
endif()

if(WIN32 AND NOT MINGW)
  set(ZEROMQ_CMAKECONFIG_INSTALL_DIR
      "CMake"
      CACHE STRING "install path for ZeroMQConfig.cmake")
else()
  # CMake search path wants either "share" (AKA GNUInstallDirs DATAROOTDIR) for arch-independent, or LIBDIR for arch-
  # dependent, plus "cmake" as prefix
  set(ZEROMQ_CMAKECONFIG_INSTALL_DIR
      "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
      CACHE STRING "install path for ZeroMQConfig.cmake")
endif()

if((NOT CMAKE_VERSION VERSION_LESS 3.0) AND (BUILD_SHARED OR BUILD_STATIC))
  export(EXPORT ${PROJECT_NAME}-targets FILE "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Targets.cmake")
endif()
configure_package_config_file(
  builds/cmake/${PROJECT_NAME}Config.cmake.in "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
  INSTALL_DESTINATION ${ZEROMQ_CMAKECONFIG_INSTALL_DIR})
write_basic_package_version_file(
  ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
  VERSION ${ZMQ_VERSION_MAJOR}.${ZMQ_VERSION_MINOR}.${ZMQ_VERSION_PATCH}
  COMPATIBILITY AnyNewerVersion)
if(BUILD_SHARED OR BUILD_STATIC)
  install(
    EXPORT ${PROJECT_NAME}-targets
    FILE ${PROJECT_NAME}Targets.cmake
    DESTINATION ${ZEROMQ_CMAKECONFIG_INSTALL_DIR})
  install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
                ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
          DESTINATION ${ZEROMQ_CMAKECONFIG_INSTALL_DIR})
endif()

option(ENABLE_CPACK "Enables cpack rules" ON)
if(MSVC AND ENABLE_CPACK)
  if(${CMAKE_BUILD_TYPE} MATCHES "Debug")
    set(CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY TRUE)
    set(CMAKE_INSTALL_DEBUG_LIBRARIES TRUE)
    set(CMAKE_INSTALL_UCRT_LIBRARIES TRUE)
  endif()
  include(InstallRequiredSystemLibraries)

  if(CMAKE_CL_64)
    set(arch_name "x64")
  else()
    set(arch_name "x86")
  endif()

  set(CPACK_NSIS_DISPLAY_NAME "ZeroMQ ${ZMQ_VERSION_MAJOR}.${ZMQ_VERSION_MINOR}.${ZMQ_VERSION_PATCH}(${arch_name})")
  set(CPACK_PACKAGE_FILE_NAME "ZeroMQ-${ZMQ_VERSION_MAJOR}.${ZMQ_VERSION_MINOR}.${ZMQ_VERSION_PATCH}-${arch_name}")

  # TODO: I think this part was intended to be used when running cpack separately from cmake but I don't know how that
  # works.
  #
  # macro(add_crt_version version) set(rel_dir
  # "${CMAKE_CURRENT_BINARY_DIR}/build/${arch_name}/${version};ZeroMQ;ALL;/")
  # set(debug_dir
  # "${CMAKE_CURRENT_BINARY_DIR}/debug/${arch_name}/${version};ZeroMQ;ALL;/")
  # if(EXISTS ${rel_dir}) list(APPEND CPACK_INSTALL_CMAKE_PROJECTS ${rel_dir}) endif()

  # if(EXISTS ${debug_dir}) list(APPEND CPACK_INSTALL_CMAKE_PROJECTS ${rel_dir}) endmacro() endmacro()

  # add_crt_version(v110) add_crt_version(v100) add_crt_version(v90)

  list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_BINARY_DIR})
  set(CPACK_GENERATOR "NSIS")
  set(CPACK_PACKAGE_NAME "ZeroMQ")
  set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "ZeroMQ lightweight messaging kernel")
  set(CPACK_PACKAGE_VENDOR "Miru")
  set(CPACK_NSIS_CONTACT "Steven McCoy <Steven.McCoy@miru.hk>")
  set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_BINARY_DIR}\\\\LICENSE.txt")
  # set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_BINARY_DIR}\\\\README.txt") set(CPACK_RESOURCE_FILE_WELCOME
  # "${CMAKE_CURRENT_BINARY_DIR}\\\\WELCOME.txt") There is a bug in NSI that does not handle full unix paths properly.
  # Make sure there is at least one set of four(4) backslashes.
  set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\installer.ico")
  set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\installer.ico")

  set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\branding.bmp")
  set(CPACK_NSIS_COMPRESSOR "/SOLID lzma")
  set(CPACK_PACKAGE_VERSION ${ZMQ_VERSION})
  set(CPACK_PACKAGE_VERSION_MAJOR ${ZMQ_VERSION_MAJOR})
  set(CPACK_PACKAGE_VERSION_MINOR ${ZMQ_VERSION_MINOR})
  set(CPACK_PACKAGE_VERSION_PATCH ${ZMQ_VERSION_PATCH})
  # set(CPACK_PACKAGE_INSTALL_DIRECTORY "ZMQ Install Directory") set(CPACK_TEMPORARY_DIRECTORY "ZMQ Temporary CPack
  # Directory")

  include(CPack)

  cpack_add_component_group(Development DISPLAY_NAME "ZeroMQ software development kit" EXPANDED)
  cpack_add_component(PerfTools DISPLAY_NAME "ZeroMQ performance tools" INSTALL_TYPES FullInstall DevInstall)
  cpack_add_component(SourceCode DISPLAY_NAME "ZeroMQ source code" DISABLED INSTALL_TYPES FullInstall)
  cpack_add_component(
    SDK
    DISPLAY_NAME
    "ZeroMQ headers and libraries"
    INSTALL_TYPES
    FullInstall
    DevInstall
    GROUP
    Development)
  if(WITH_DOC)
    cpack_add_component(
      RefGuide
      DISPLAY_NAME
      "ZeroMQ reference guide"
      INSTALL_TYPES
      FullInstall
      DevInstall
      GROUP
      Development)
  endif()
  cpack_add_component(
    Runtime
    DISPLAY_NAME
    "ZeroMQ runtime files"
    REQUIRED
    INSTALL_TYPES
    FullInstall
    DevInstall
    MinInstall)
  cpack_add_install_type(FullInstall DISPLAY_NAME "Full install, including source code")
  cpack_add_install_type(DevInstall DISPLAY_NAME "Developer install, headers and libraries")
  cpack_add_install_type(MinInstall DISPLAY_NAME "Minimal install, runtime only")
endif()

# Export this for library to help build this as a sub-project
set(ZEROMQ_LIBRARY
    libzmq
    CACHE STRING "ZeroMQ library")

# Workaround for MSVS10 to avoid the Dialog Hell FIXME: This could be removed with future version of CMake.
if(MSVC_VERSION EQUAL 1600)
  set(ZMQ_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/ZeroMQ.sln")
  if(EXISTS "${ZMQ_SLN_FILENAME}")
    file(APPEND "${ZMQ_SLN_FILENAME}" "\n# This should be regenerated!\n")
  endif()
endif()

# this cannot be moved, as it does not only contain function/macro definitions
option(ENABLE_CLANG "Include Clang" ON)
if (ENABLE_CLANG)
  include(ClangFormat)
endif()

# fixes https://github.com/zeromq/libzmq/issues/3776 The problem is, both libzmq-static libzmq try to use/generate
# precompiled.pch at the same time Add a dependency, so they run in order and so they dont get in each others way TODO
# still generates warning "build\x64-Debug\ninja : warning : multiple rules generate precompiled.hpp. builds involving
# this target will not be correct; continuing anyway [-w dupbuild=warn]"
if(MSVC
   AND ENABLE_PRECOMPILED
   AND BUILD_SHARED
   AND BUILD_STATIC)
  add_dependencies(libzmq-static libzmq)
endif()

option(ENABLE_NO_EXPORT "Build with empty ZMQ_EXPORT macro, bypassing platform-based automated detection" OFF)
if(ENABLE_NO_EXPORT)
  message(STATUS "Building with empty ZMQ_EXPORT macro")
  add_definitions(-DZMQ_NO_EXPORT)
endif()

if (ENABLE_CURVE)
  add_executable(curve_keygen tools/curve_keygen.cpp)
  target_link_libraries(curve_keygen libzmq)
  install(TARGETS curve_keygen RUNTIME DESTINATION bin)
endif()


================================================
FILE: Dockerfile
================================================
FROM debian:buster-slim AS builder
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
    && apt-get install -qq --yes --no-install-recommends \
        autoconf \
        automake \
        build-essential \
        git \
        libkrb5-dev \
        libsodium-dev \
        libtool \
        pkg-config \
    && rm -rf /var/lib/apt/lists/*
WORKDIR /opt/libzmq
COPY . .
RUN ./autogen.sh \
    && ./configure --prefix=/usr/local --with-libsodium --with-libgssapi_krb5 \
    && make \
    && make check \
    && make install

FROM debian:buster-slim
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
    && apt-get install -qq --yes --no-install-recommends \
        libkrb5-dev \
        libsodium23 \
    && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local /usr/local
RUN ldconfig && ldconfig -p | grep libzmq


================================================
FILE: Doxygen.cfg
================================================
# Doxyfile 1.8.11

# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]
# For lists, items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (\" \").

#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------

# This tag specifies the encoding used for all characters in the config file
# that follow. The default is UTF-8 which is also the encoding used for all text
# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
# for the list of possible encodings.
# The default value is: UTF-8.

DOXYFILE_ENCODING      = UTF-8

# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
# double-quotes, unless you are using Doxywizard) that should identify the
# project for which the documentation is generated. This name is used in the
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME           = libzmq

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER         = master

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short.

PROJECT_BRIEF          = "ZeroMQ C++ Core Engine (LIBZMQ)"

PROJECT_LOGO           = branding.bmp

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.

OUTPUT_DIRECTORY       = doxygen

# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and
# will distribute the generated files over these directories. Enabling this
# option can be useful when feeding doxygen a huge amount of source files, where
# putting all generated files in the same directory would otherwise causes
# performance problems for the file system.
# The default value is: NO.

CREATE_SUBDIRS         = YES

# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
# characters to appear in the names of generated files. If set to NO, non-ASCII
# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
# U+3044.
# The default value is: NO.

ALLOW_UNICODE_NAMES    = NO

# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by doxygen is written. Doxygen will use this
# information to generate all constant output in the proper language.
# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
# Ukrainian and Vietnamese.
# The default value is: English.

OUTPUT_LANGUAGE        = English

# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
# descriptions after the members that are listed in the file and class
# documentation (similar to Javadoc). Set to NO to disable this.
# The default value is: YES.

BRIEF_MEMBER_DESC      = YES

# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
# description of a member or function before the detailed description
#
# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
# brief descriptions will be completely suppressed.
# The default value is: YES.

REPEAT_BRIEF           = YES

# This tag implements a quasi-intelligent brief description abbreviator that is
# used to form the text in various listings. Each string in this list, if found
# as the leading text of the brief description, will be stripped from the text
# and the result, after processing the whole list, is used as the annotated
# text. Otherwise, the brief description is used as-is. If left blank, the
# following values are used ($name is automatically replaced with the name of
# the entity):The $name class, The $name widget, The $name file, is, provides,
# specifies, contains, represents, a, an and the.

ABBREVIATE_BRIEF       =

# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
# doxygen will generate a detailed section even if there is only a brief
# description.
# The default value is: NO.

ALWAYS_DETAILED_SEC    = NO

# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
# inherited members of a class in the documentation of that class as if those
# members were ordinary class members. Constructors, destructors and assignment
# operators of the base classes will not be shown.
# The default value is: NO.

INLINE_INHERITED_MEMB  = NO

# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
# before files name in the file list and in the header files. If set to NO the
# shortest path that makes the file name unique will be used
# The default value is: YES.

FULL_PATH_NAMES        = NO

# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
# Stripping is only done if one of the specified strings matches the left-hand
# part of the path. The tag can be used to show relative paths in the file list.
# If left blank the directory from which doxygen is run is used as the path to
# strip.
#
# Note that you can specify absolute paths here, but also relative paths, which
# will be relative from the directory where doxygen is started.
# This tag requires that the tag FULL_PATH_NAMES is set to YES.

STRIP_FROM_PATH        = ../..

# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
# path mentioned in the documentation of a class, which tells the reader which
# header file to include in order to use a class. If left blank only the name of
# the header file containing the class definition is used. Otherwise one should
# specify the list of include paths that are normally passed to the compiler
# using the -I flag.

STRIP_FROM_INC_PATH    =

# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
# less readable) file names. This can be useful is your file systems doesn't
# support long names like on DOS, Mac, or CD-ROM.
# The default value is: NO.

SHORT_NAMES            = NO
JAVADOC_AUTOBRIEF      = NO
QT_AUTOBRIEF           = NO

# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
# a brief description. This used to be the default behavior. The new default is
# to treat a multi-line C++ comment block as a detailed description. Set this
# tag to YES if you prefer the old behavior instead.
#
# Note that setting this tag to YES also means that rational rose comments are
# not recognized any more.
# The default value is: NO.

MULTILINE_CPP_IS_BRIEF = NO

# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
# documentation from any documented member that it re-implements.
# The default value is: YES.

INHERIT_DOCS           = YES

# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
# page for each member. If set to NO, the documentation of a member will be part
# of the file/class/namespace that contains it.
# The default value is: NO.

SEPARATE_MEMBER_PAGES  = NO

# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
# uses this value to replace tabs by spaces in code fragments.
# Minimum value: 1, maximum value: 16, default value: 4.

TAB_SIZE               = 4

# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
# only. Doxygen will then generate output that is more tailored for C. For
# instance, some of the names that are used will be different. The list of all
# members will be omitted, etc.
# The default value is: NO.

OPTIMIZE_OUTPUT_FOR_C  = NO

OPTIMIZE_OUTPUT_JAVA   = NO

OPTIMIZE_FOR_FORTRAN   = NO

OPTIMIZE_OUTPUT_VHDL   = NO

# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
# documentation. See http://daringfireball.net/projects/markdown/ for details.
# The output of markdown processing is further processed by doxygen, so you can
# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
# case of backward compatibilities issues.
# The default value is: YES.

MARKDOWN_SUPPORT       = YES

# When enabled doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can
# be prevented in individual cases by putting a % sign in front of the word or
# globally by setting AUTOLINK_SUPPORT to NO.
# The default value is: YES.

AUTOLINK_SUPPORT       = YES

# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
# to include (a tag file for) the STL sources as input, then you should set this
# tag to YES in order to let doxygen match functions declarations and
# definitions whose arguments contain STL classes (e.g. func(std::string);
# versus func(std::string) {}). This also make the inheritance and collaboration
# diagrams that involve STL classes more complete and accurate.
# The default value is: NO.

BUILTIN_STL_SUPPORT    = YES

# If you use Microsoft's C++/CLI language, you should set this option to YES to
# enable parsing support.
# The default value is: NO.

CPP_CLI_SUPPORT        = NO

# For Microsoft's IDL there are propget and propput attributes to indicate
# getter and setter methods for a property. Setting this option to YES will make
# doxygen to replace the get and set methods by a property in the documentation.
# This will only work if the methods are indeed getting or setting a simple
# type. If this is not the case, or you want to show the methods anyway, you
# should set this option to NO.
# The default value is: YES.

IDL_PROPERTY_SUPPORT   = YES

# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
# tag is set to YES then doxygen will reuse the documentation of the first
# member in the group (if any) for the other members of the group. By default
# all members of a group must be documented explicitly.
# The default value is: NO.

DISTRIBUTE_GROUP_DOC   = NO

# If one adds a struct or class to a group and this option is enabled, then also
# any nested class or struct is added to the same group. By default this option
# is disabled and one has to add nested compounds explicitly via \ingroup.
# The default value is: NO.

GROUP_NESTED_COMPOUNDS = NO

# Set the SUBGROUPING tag to YES to allow class member groups of the same type
# (for instance a group of public functions) to be put as a subgroup of that
# type (e.g. under the Public Functions section). Set it to NO to prevent
# subgrouping. Alternatively, this can be done per class using the
# \nosubgrouping command.
# The default value is: YES.

SUBGROUPING            = YES

# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
# are shown inside the group in which they are included (e.g. using \ingroup)
# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
# and RTF).
#
# Note that this feature does not work in combination with
# SEPARATE_MEMBER_PAGES.
# The default value is: NO.

INLINE_GROUPED_CLASSES = NO

# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
# with only public data fields or simple typedef fields will be shown inline in
# the documentation of the scope in which they are defined (i.e. file,
# namespace, or group documentation), provided this scope is documented. If set
# to NO, structs, classes, and unions are shown on a separate page (for HTML and
# Man pages) or section (for LaTeX and RTF).
# The default value is: NO.

INLINE_SIMPLE_STRUCTS  = NO

# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
# enum is documented as struct, union, or enum with the name of the typedef. So
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
# with name TypeT. When disabled the typedef will appear as a member of a file,
# namespace, or class. And the struct will be named TypeS. This can typically be
# useful for C code in case the coding convention dictates that all compound
# types are typedef'ed and only the typedef is referenced, never the tag name.
# The default value is: NO.

TYPEDEF_HIDES_STRUCT   = NO

# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
# cache is used to resolve symbols given their name and scope. Since this can be
# an expensive process and often the same symbol appears multiple times in the
# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
# doxygen will become slower. If the cache is too large, memory is wasted. The
# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
# symbols. At the end of a run doxygen will report the cache usage and suggest
# the optimal cache size from a speed point of view.
# Minimum value: 0, maximum value: 9, default value: 0.

LOOKUP_CACHE_SIZE      = 0

#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------

# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
# documentation are documented, even if no documentation was available. Private
# class members and static file members will be hidden unless the
# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
# Note: This will also disable the warnings about undocumented members that are
# normally produced when WARNINGS is set to YES.
# The default value is: NO.

EXTRACT_ALL            = YES

# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
# be included in the documentation.
# The default value is: NO.

EXTRACT_PRIVATE        = YES

# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
# scope will be included in the documentation.
# The default value is: NO.

EXTRACT_PACKAGE        = NO

# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
# included in the documentation.
# The default value is: NO.

EXTRACT_STATIC         = YES

# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
# locally in source files will be included in the documentation. If set to NO,
# only classes defined in header files are included. Does not have any effect
# for Java sources.
# The default value is: YES.

EXTRACT_LOCAL_CLASSES  = YES

# If this flag is set to YES, the members of anonymous namespaces will be
# extracted and appear in the documentation as a namespace called
# 'anonymous_namespace{file}', where file will be replaced with the base name of
# the file that contains the anonymous namespace. By default anonymous namespace
# are hidden.
# The default value is: NO.

EXTRACT_ANON_NSPACES   = YES

# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
# undocumented members inside documented classes or files. If set to NO these
# members will be included in the various overviews, but no documentation
# section is generated. This option has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.

HIDE_UNDOC_MEMBERS     = NO

# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
# undocumented classes that are normally visible in the class hierarchy. If set
# to NO, these classes will be included in the various overviews. This option
# has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.

HIDE_UNDOC_CLASSES     = NO

# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
# (class|struct|union) declarations. If set to NO, these declarations will be
# included in the documentation.
# The default value is: NO.

HIDE_FRIEND_COMPOUNDS  = NO

# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
# documentation blocks found inside the body of a function. If set to NO, these
# blocks will be appended to the function's detailed documentation block.
# The default value is: NO.

HIDE_IN_BODY_DOCS      = NO

# The INTERNAL_DOCS tag determines if documentation that is typed after a
# \internal command is included. If the tag is set to NO then the documentation
# will be excluded. Set it to YES to include the internal documentation.
# The default value is: NO.

INTERNAL_DOCS          = NO

# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
# names in lower-case letters. If set to YES, upper-case letters are also
# allowed. This is useful if you have classes or files whose names only differ
# in case and if your file system supports case sensitive file names. Windows
# and Mac users are advised to set this option to NO.
# The default value is: system dependent.

CASE_SENSE_NAMES       = YES

# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
# their full class and namespace scopes in the documentation. If set to YES, the
# scope will be hidden.
# The default value is: NO.

HIDE_SCOPE_NAMES       = NO

# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
# append additional text to a page's title, such as Class Reference. If set to
# YES the compound reference will be hidden.
# The default value is: NO.

HIDE_COMPOUND_REFERENCE= NO

# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
# the files that are included by a file in the documentation of that file.
# The default value is: YES.

SHOW_INCLUDE_FILES     = YES

# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
# grouped member an include statement to the documentation, telling the reader
# which file to include in order to use the member.
# The default value is: NO.

SHOW_GROUPED_MEMB_INC  = NO

# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
# files with double quotes in the documentation rather than with sharp brackets.
# The default value is: NO.

FORCE_LOCAL_INCLUDES   = NO

# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
# documentation for inline members.
# The default value is: YES.

INLINE_INFO            = YES

# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
# (detailed) documentation of file and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order.
# The default value is: YES.

SORT_MEMBER_DOCS       = YES

# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
# descriptions of file, namespace and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order. Note that
# this will also influence the order of the classes in the class list.
# The default value is: NO.

SORT_BRIEF_DOCS        = YES

# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
# (brief and detailed) documentation of class members so that constructors and
# destructors are listed first. If set to NO the constructors will appear in the
# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
# member documentation.
# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
# detailed member documentation.
# The default value is: NO.

SORT_MEMBERS_CTORS_1ST = YES

# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
# of group names into alphabetical order. If set to NO the group names will
# appear in their defined order.
# The default value is: NO.

SORT_GROUP_NAMES       = NO

# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
# fully-qualified names, including namespaces. If set to NO, the class list will
# be sorted only by class name, not including the namespace part.
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
# Note: This option applies only to the class list, not to the alphabetical
# list.
# The default value is: NO.

SORT_BY_SCOPE_NAME     = NO

# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
# type resolution of all parameters of a function it will reject a match between
# the prototype and the implementation of a member function even if there is
# only one candidate or it is obvious which candidate to choose by doing a
# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
# accept a match between prototype and implementation in such cases.
# The default value is: NO.

STRICT_PROTO_MATCHING  = NO

# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
# list. This list is created by putting \todo commands in the documentation.
# The default value is: YES.

GENERATE_TODOLIST      = YES

# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
# list. This list is created by putting \test commands in the documentation.
# The default value is: YES.

GENERATE_TESTLIST      = YES

# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
# list. This list is created by putting \bug commands in the documentation.
# The default value is: YES.

GENERATE_BUGLIST       = YES

# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
# the deprecated list. This list is created by putting \deprecated commands in
# the documentation.
# The default value is: YES.

GENERATE_DEPRECATEDLIST= YES

# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
# initial value of a variable or macro / define can have for it to appear in the
# documentation. If the initializer consists of more lines than specified here
# it will be hidden. Use a value of 0 to hide initializers completely. The
# appearance of the value of individual variables and macros / defines can be
# controlled using \showinitializer or \hideinitializer command in the
# documentation regardless of this setting.
# Minimum value: 0, maximum value: 10000, default value: 30.

MAX_INITIALIZER_LINES  = 30

# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
# the bottom of the documentation of classes and structs. If set to YES, the
# list will mention the files that were used to generate the documentation.
# The default value is: YES.

SHOW_USED_FILES        = NO

# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
# will remove the Files entry from the Quick Index and from the Folder Tree View
# (if specified).
# The default value is: YES.

SHOW_FILES             = YES

# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
# page. This will remove the Namespaces entry from the Quick Index and from the
# Folder Tree View (if specified).
# The default value is: YES.

SHOW_NAMESPACES        = NO

# The FILE_VERSION_FILTER tag can be used to specify a program or script that
# doxygen should invoke to get the current version for each file (typically from
# the version control system). Doxygen will invoke the program by executing (via
# popen()) the command command input-file, where command is the value of the
# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
# by doxygen. Whatever the program writes to standard output is used as the file
# version. For an example see the documentation.

FILE_VERSION_FILTER    =

# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
# by doxygen. The layout file controls the global structure of the generated
# output files in an output format independent way. To create the layout file
# that represents doxygen's defaults, run doxygen with the -l option. You can
# optionally specify a file name after the option, if omitted DoxygenLayout.xml
# will be used as the name of the layout file.
#
# Note that if you run doxygen from a directory containing a file called
# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
# tag is left empty.

LAYOUT_FILE            =

# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
# the reference definitions. This must be a list of .bib files. The .bib
# extension is automatically appended if omitted. This requires the bibtex tool
# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
# For LaTeX the style of the bibliography can be controlled using
# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
# search path. See also \cite for info how to create references.

CITE_BIB_FILES         =

#---------------------------------------------------------------------------
# Configuration options related to warning and progress messages
#---------------------------------------------------------------------------

# The QUIET tag can be used to turn on/off the messages that are generated to
# standard output by doxygen. If QUIET is set to YES this implies that the
# messages are off.
# The default value is: NO.

QUIET                  = NO

# The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
# this implies that the warnings are on.
#
# Tip: Turn warnings on while writing the documentation.
# The default value is: YES.

WARNINGS               = YES

# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
# will automatically be disabled.
# The default value is: YES.

WARN_IF_UNDOCUMENTED   = NO

# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
# potential errors in the documentation, such as not documenting some parameters
# in a documented function, or documenting parameters that don't exist or using
# markup commands wrongly.
# The default value is: YES.

WARN_IF_DOC_ERROR      = YES

# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
# are documented, but have no documentation for their parameters or return
# value. If set to NO, doxygen will only warn about wrong or incomplete
# parameter documentation, but not about the absence of documentation.
# The default value is: NO.

WARN_NO_PARAMDOC       = NO

# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
# a warning is encountered.
# The default value is: NO.

WARN_AS_ERROR          = NO

# The WARN_FORMAT tag determines the format of the warning messages that doxygen
# can produce. The string should contain the $file, $line, and $text tags, which
# will be replaced by the file and line number from which the warning originated
# and the warning text. Optionally the format may contain $version, which will
# be replaced by the version of the file (if it could be obtained via
# FILE_VERSION_FILTER)
# The default value is: $file:$line: $text.

WARN_FORMAT            =

# The WARN_LOGFILE tag can be used to specify a file to which warning and error
# messages should be written. If left blank the output is written to standard
# error (stderr).

WARN_LOGFILE           =

#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------

# The INPUT tag is used to specify the files and/or directories that contain
# documented source files. You may enter file names like myfile.cpp or
# directories like /usr/src/myproject. Separate the files or directories with
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT                  = include \
                         src \
                         tests \
                         perf \
                         README.doxygen.md

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
# documentation (see: http://www.gnu.org/software/libiconv) for the list of
# possible encodings.
# The default value is: UTF-8.

INPUT_ENCODING         = UTF-8

# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
# *.h) to filter out the source-files in the directories.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# read by doxygen.
#
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f, *.for, *.tcl,
# *.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js.

FILE_PATTERNS          = *.c \
                         *.cpp \
                         *.h \
                         *.hpp

# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
# The default value is: NO.

RECURSIVE              = YES

# The EXCLUDE tag can be used to specify files and/or directories that should be
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
#
# Note that relative paths are relative to the directory from which doxygen is
# run.

EXCLUDE                =

# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
# from the input.
# The default value is: NO.

EXCLUDE_SYMLINKS       = NO

# If the value of the INPUT tag contains directories, you can use the
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
# certain files from those directories.
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/*

EXCLUDE_PATTERNS       =

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
# output. The symbol name can be a fully qualified name, a word, or if the
# wildcard * is used, a substring. Examples: ANamespace, AClass,
# AClass::ANamespace, ANamespace::*Test
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories use the pattern */test/*

EXCLUDE_SYMBOLS        =

# The EXAMPLE_PATH tag can be used to specify one or more files or directories
# that contain example code fragments that are included (see the \include
# command).

EXAMPLE_PATH           = tests perf

# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
# *.h) to filter out the source-files in the directories. If left blank all
# files are included.

EXAMPLE_PATTERNS       =

# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
# searched for input files to be used with the \include or \dontinclude commands
# irrespective of the value of the RECURSIVE tag.
# The default value is: NO.

EXAMPLE_RECURSIVE      = YES

# The IMAGE_PATH tag can be used to specify one or more files or directories
# that contain images that are to be included in the documentation (see the
# \image command).

IMAGE_PATH             =

# The INPUT_FILTER tag can be used to specify a program that doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program
# by executing (via popen()) the command:
#
# <filter> <input-file>
#
# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
# name of an input file. Doxygen will then use the output that the filter
# program writes to standard output. If FILTER_PATTERNS is specified, this tag
# will be ignored.
#
# Note that the filter must not add or remove lines; it is applied before the
# code is scanned, but not when the output code is generated. If lines are added
# or removed, the anchors will not be placed correctly.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.

INPUT_FILTER           =

# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
# basis. Doxygen will compare the file name with each pattern and apply the
# filter if there is a match. The filters are a list of the form: pattern=filter
# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
# patterns match the file name, INPUT_FILTER is applied.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.

FILTER_PATTERNS        =

# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
# INPUT_FILTER) will also be used to filter the input files that are used for
# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
# The default value is: NO.

FILTER_SOURCE_FILES    = NO

# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
# it is also possible to disable source filtering for a specific pattern using
# *.ext= (so without naming a filter).
# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.

FILTER_SOURCE_PATTERNS =

# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
# is part of the input, its contents will be placed on the main page
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the doxygen output.

USE_MDFILE_AS_MAINPAGE = README.doxygen.md

#---------------------------------------------------------------------------
# Configuration options related to source browsing
#---------------------------------------------------------------------------

# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
# generated. Documented entities will be cross-referenced with these sources.
#
# Note: To get rid of all source code in the generated output, make sure that
# also VERBATIM_HEADERS is set to NO.
# The default value is: NO.

SOURCE_BROWSER         = YES

# Setting the INLINE_SOURCES tag to YES will include the body of functions,
# classes and enums directly into the documentation.
# The default value is: NO.

INLINE_SOURCES         = NO

# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
# special comment blocks from generated source code fragments. Normal C, C++ and
# Fortran comments will always remain visible.
# The default value is: YES.

STRIP_CODE_COMMENTS    = NO

# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
# function all documented functions referencing it will be listed.
# The default value is: NO.

REFERENCED_BY_RELATION = YES

# If the REFERENCES_RELATION tag is set to YES then for each documented function
# all documented entities called/used by that function will be listed.
# The default value is: NO.

REFERENCES_RELATION    = YES

# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
# to YES then the hyperlinks from functions in REFERENCES_RELATION and
# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
# link to the documentation.
# The default value is: YES.

REFERENCES_LINK_SOURCE = YES

# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
# source code will show a tooltip with additional information such as prototype,
# brief description and links to the definition and documentation. Since this
# will make the HTML file larger and loading of large files a bit slower, you
# can opt to disable this feature.
# The default value is: YES.
# This tag requires that the tag SOURCE_BROWSER is set to YES.

SOURCE_TOOLTIPS        = YES

# If the USE_HTAGS tag is set to YES then the references to source code will
# point to the HTML generated by the htags(1) tool instead of doxygen built-in
# source browser. The htags tool is part of GNU's global source tagging system
# (see http://www.gnu.org/software/global/global.html). You will need version
# 4.8.6 or higher.
#
# To use it do the following:
# - Install the latest version of global
# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
# - Make sure the INPUT points to the root of the source tree
# - Run doxygen as normal
#
# Doxygen will invoke htags (and that will in turn invoke gtags), so these
# tools must be available from the command line (i.e. in the search path).
#
# The result: instead of the source browser generated by doxygen, the links to
# source code will now point to the output of htags.
# The default value is: NO.
# This tag requires that the tag SOURCE_BROWSER is set to YES.

USE_HTAGS              = NO

# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
# verbatim copy of the header file for each class for which an include is
# specified. Set to NO to disable this.
# See also: Section \class.
# The default value is: YES.

VERBATIM_HEADERS       = YES

#---------------------------------------------------------------------------
# Configuration options related to the alphabetical class index
#---------------------------------------------------------------------------

# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
# compounds will be generated. Enable this if the project contains a lot of
# classes, structs, unions or interfaces.
# The default value is: YES.

ALPHABETICAL_INDEX     = YES

# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
# which the alphabetical index list will be split.
# Minimum value: 1, maximum value: 20, default value: 5.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.

COLS_IN_ALPHA_INDEX    = 4

# In case all classes in a project start with a common prefix, all classes will
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
# can be used to specify a prefix (or a list of prefixes) that should be ignored
# while generating the index headers.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.

IGNORE_PREFIX          =

#---------------------------------------------------------------------------
# Configuration options related to the HTML output
#---------------------------------------------------------------------------

# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
# The default value is: YES.

GENERATE_HTML          = YES

# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: html.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_OUTPUT            = html

# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
# generated HTML page (for example: .htm, .php, .asp).
# The default value is: .html.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_FILE_EXTENSION    = .html

# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
# each generated HTML page. If the tag is left blank doxygen will generate a
# standard header.
#
# To get valid HTML the header file that includes any scripts and style sheets
# that doxygen needs, which is dependent on the configuration options used (e.g.
# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
# default header using
# doxygen -w html new_header.html new_footer.html new_stylesheet.css
# YourConfigFile
# and then modify the file new_header.html. See also section "Doxygen usage"
# for information on how to generate the default header that doxygen normally
# uses.
# Note: The header is subject to change so you typically have to regenerate the
# default header when upgrading to a newer version of doxygen. For a description
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

# HTML_HEADER            = doxygen.header

# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank doxygen will generate a standard
# footer. See HTML_HEADER for more information on how to generate a default
# footer and what special commands can be used inside the footer. See also
# section "Doxygen usage" for information on how to generate the default footer
# that doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.

# HTML_FOOTER            = doxygen.footer

# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
# the HTML output. If left blank doxygen will generate a default style sheet.
# See also section "Doxygen usage" for information on how to generate the style
# sheet that doxygen normally uses.
# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
# it is more robust and this tag (HTML_STYLESHEET) will in the future become
# obsolete.
# This tag requires that the tag GENERATE_HTML is set to YES.

# HTML_STYLESHEET        = doxygen.css

# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# cascading style sheets that are included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list). For an example see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_STYLESHEET  =

# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
# that these files will be copied to the base HTML output directory. Use the
# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
# files will be copied as-is; there are no commands or markers available.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_FILES       =

# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
# will adjust the colors in the style sheet and background images according to
# this color. Hue is specified as an angle on a colorwheel, see
# http://en.wikipedia.org/wiki/Hue for more information. For instance the value
# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
# purple, and 360 is red again.
# Minimum value: 0, maximum value: 359, default value: 220.
# This tag requires that the tag GENERATE_HTML is set to YES.

# HTML_COLORSTYLE_HUE    = 240

# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
# in the HTML output. For a value of 0 the output will use grayscales only. A
# value of 255 will produce the most vivid colors.
# Minimum value: 0, maximum value: 255, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.

#HTML_COLORSTYLE_SAT    = 100

# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
# luminance component of the colors in the HTML output. Values below 100
# gradually make the output lighter, whereas values above 100 make the output
# darker. The value divided by 100 is the actual gamma applied, so 80 represents
# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
# change the gamma.
# Minimum value: 40, maximum value: 240, default value: 80.
# This tag requires that the tag GENERATE_HTML is set to YES.

#HTML_COLORSTYLE_GAMMA  = 80

# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
# page will contain the date and time when the page was generated. Setting this
# to YES can help to show when doxygen was last run and thus if the
# documentation is up to date.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_TIMESTAMP         = NO

# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
# page has loaded.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_DYNAMIC_SECTIONS  = NO

# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
# shown in the various tree structured indices initially; the user can expand
# and collapse entries dynamically later on. Doxygen will expand the tree to
# such a level that at most the specified number of entries are visible (unless
# a fully collapsed tree already exceeds this amount). So setting the number of
# entries 1 will produce a full collapsed tree by default. 0 is a special value
# representing an infinite number of entries and will result in a full expanded
# tree by default.
# Minimum value: 0, maximum value: 9999, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_INDEX_NUM_ENTRIES = 100

# If the GENERATE_DOCSET tag is set to YES, additional index files will be
# generated that can be used as input for Apple's Xcode 3 integrated development
# environment (see: http://developer.apple.com/tools/xcode/), introduced with
# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
# Makefile in the HTML output directory. Running make will produce the docset in
# that directory and running make install will install the docset in
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
# for more information.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_DOCSET        = NO

# This tag determines the name of the docset feed. A documentation feed provides
# an umbrella under which multiple documentation sets from a single provider
# (such as a company or product suite) can be grouped.
# The default value is: Doxygen generated docs.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_FEEDNAME        = "Doxygen generated docs"

# This tag specifies a string that should uniquely identify the documentation
# set bundle. This should be a reverse domain-name style string, e.g.
# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_BUNDLE_ID       = org.doxygen.Project

# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
# the documentation publisher. This should be a reverse domain-name style
# string, e.g. com.mycompany.MyDocSet.documentation.
# The default value is: org.doxygen.Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_PUBLISHER_ID    = org.doxygen.Publisher

# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
# The default value is: Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_PUBLISHER_NAME  = Publisher

# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
# Windows.
#
# The HTML Help Workshop contains a compiler that can convert all HTML output
# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
# files are now used as the Windows 98 help format, and will replace the old
# Windows help format (.hlp) on all Windows platforms in the future. Compressed
# HTML files also contain an index, a table of contents, and you can search for
# words in the documentation. The HTML workshop also contains a viewer for
# compressed HTML files.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_HTMLHELP      = NO

# The CHM_FILE tag can be used to specify the file name of the resulting .chm
# file. You can add a path in front of the file if the result should not be
# written to the html output directory.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

CHM_FILE               =

# The HHC_LOCATION tag can be used to specify the location (absolute path
# including file name) of the HTML help compiler (hhc.exe). If non-empty,
# doxygen will try to run the HTML help compiler on the generated index.hhp.
# The file has to be specified with full path.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

HHC_LOCATION           =

# The GENERATE_CHI flag controls if a separate .chi index file is generated
# (YES) or that it should be included in the master .chm file (NO).
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

GENERATE_CHI           = NO

# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
# and project file content.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

CHM_INDEX_ENCODING     =

# The BINARY_TOC flag controls whether a binary table of contents is generated
# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
# enables the Previous and Next buttons.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

BINARY_TOC             = NO

# The TOC_EXPAND flag can be set to YES to add extra items for group members to
# the table of contents of the HTML help documentation and to the tree view.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

TOC_EXPAND             = NO

# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
# (.qch) of the generated HTML documentation.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_QHP           = NO

# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
# the file name of the resulting .qch file. The path specified is relative to
# the HTML output folder.
# This tag requires that the tag GENERATE_QHP is set to YES.

QCH_FILE               =

# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
# Project output. For more information please see Qt Help Project / Namespace
# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_NAMESPACE          = org.doxygen.Project

# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
# Help Project output. For more information please see Qt Help Project / Virtual
# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
# folders).
# The default value is: doc.
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_VIRTUAL_FOLDER     = doc

# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
# filter to add. For more information please see Qt Help Project / Custom
# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
# filters).
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_CUST_FILTER_NAME   =

# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
# custom filter to add. For more information please see Qt Help Project / Custom
# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
# filters).
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_CUST_FILTER_ATTRS  =

# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
# project's filter section matches. Qt Help Project / Filter Attributes (see:
# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_SECT_FILTER_ATTRS  =

# The QHG_LOCATION tag can be used to specify the location of Qt's
# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
# generated .qhp file.
# This tag requires that the tag GENERATE_QHP is set to YES.

QHG_LOCATION           =

# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
# generated, together with the HTML files, they form an Eclipse help plugin. To
# install this plugin and make it available under the help contents menu in
# Eclipse, the contents of the directory containing the HTML and XML files needs
# to be copied into the plugins directory of eclipse. The name of the directory
# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
# After copying Eclipse needs to be restarted before the help appears.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_ECLIPSEHELP   = NO

# A unique identifier for the Eclipse help plugin. When installing the plugin
# the directory name containing the HTML and XML files should also have this
# name. Each documentation set should have its own identifier.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.

ECLIPSE_DOC_ID         = org.doxygen.Project

# If you want full control over the layout of the generated HTML pages it might
# be necessary to disable the index and replace it with your own. The
# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
# of each HTML page. A value of NO enables the index and the value YES disables
# it. Since the tabs in the index contain the same information as the navigation
# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

DISABLE_INDEX          = NO

# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
# structure should be generated to display hierarchical information. If the tag
# value is set to YES, a side panel will be generated containing a tree-like
# index structure (just like the one that is generated for HTML Help). For this
# to work a browser that supports JavaScript, DHTML, CSS and frames is required
# (i.e. any modern browser). Windows users are probably better off using the
# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
# further fine-tune the look of the index. As an example, the default style
# sheet generated by doxygen has an example that shows how to put an image at
# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
# the same information as the tab index, you could consider setting
# DISABLE_INDEX to YES when enabling this option.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_TREEVIEW      = YES

# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
# doxygen will group on one line in the generated HTML documentation.
#
# Note that a value of 0 will completely suppress the enum values from appearing
# in the overview section.
# Minimum value: 0, maximum value: 20, default value: 4.
# This tag requires that the tag GENERATE_HTML is set to YES.

ENUM_VALUES_PER_LINE   = 4

# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
# to set the initial width (in pixels) of the frame in which the tree is shown.
# Minimum value: 0, maximum value: 1500, default value: 250.
# This tag requires that the tag GENERATE_HTML is set to YES.

TREEVIEW_WIDTH         = 200

# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
# external symbols imported via tag files in a separate window.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

EXT_LINKS_IN_WINDOW    = NO

# Use this tag to change the font size of LaTeX formulas included as images in
# the HTML documentation. When you change the font size after a successful
# doxygen run you need to manually remove any form_*.png images from the HTML
# output directory to force them to be regenerated.
# Minimum value: 8, maximum value: 50, default value: 10.
# This tag requires that the tag GENERATE_HTML is set to YES.

FORMULA_FONTSIZE       = 10

# Use the FORMULA_TRANPARENT tag to determine whether or not the images
# generated for formulas are transparent PNGs. Transparent PNGs are not
# supported properly for IE 6.0, but are supported on all modern browsers.
#
# Note that when changing this option you need to delete any form_*.png files in
# the HTML output directory before the changes have effect.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.

FORMULA_TRANSPARENT    = YES

# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
# http://www.mathjax.org) which uses client side Javascript for the rendering
# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
# installed or if you want to formulas look prettier in the HTML output. When
# enabled you may also need to install MathJax separately and configure the path
# to it using the MATHJAX_RELPATH option.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

USE_MATHJAX            = NO

# When MathJax is enabled you can set the default output format to be used for
# the MathJax output. See the MathJax site (see:
# http://docs.mathjax.org/en/latest/output.html) for more details.
# Possible values are: HTML-CSS (which is slower, but has the best
# compatibility), NativeMML (i.e. MathML) and SVG.
# The default value is: HTML-CSS.
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_FORMAT         = HTML-CSS

# When MathJax is enabled you need to specify the location relative to the HTML
# output directory using the MATHJAX_RELPATH option. The destination directory
# should contain the MathJax.js script. For instance, if the mathjax directory
# is located at the same level as the HTML output directory, then
# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
# Content Delivery Network so you can quickly see the result without installing
# MathJax. However, it is strongly recommended to install a local copy of
# MathJax from http://www.mathjax.org before deployment.
# The default value is: http://cdn.mathjax.org/mathjax/latest.
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest

# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
# extension names that should be enabled during MathJax rendering. For example
# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_EXTENSIONS     =

# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
# of code that will be used on startup of the MathJax code. See the MathJax site
# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
# example see the documentation.
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_CODEFILE       =

# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
# the HTML output. The underlying search engine uses javascript and DHTML and
# should work on any modern browser. Note that when using HTML help
# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
# there is already a search function so this one should typically be disabled.
# For large projects the javascript based search engine can be slow, then
# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
# search using the keyboard; to jump to the search box use <access key> + S
# (what the <access key> is depends on the OS and browser, but it is typically
# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
# key> to jump into the search results window, the results can be navigated
# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
# the search. The filter options can be selected when the cursor is inside the
# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
# to select a filter and <Enter> or <escape> to activate or cancel the filter
# option.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.

SEARCHENGINE           = NO

# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
# implemented using a web server instead of a web client using Javascript. There
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
# setting. When disabled, doxygen will generate a PHP script for searching and
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
# and searching needs to be provided by external tools. See the section
# "External Indexing and Searching" for details.
# The default value is: NO.
# This tag requires that the tag SEARCHENGINE is set to YES.

SERVER_BASED_SEARCH    = NO

# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
# script for searching. Instead the search results are written to an XML file
# which needs to be processed by an external indexer. Doxygen will invoke an
# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
# search results.
#
# Doxygen ships with an example indexer (doxyindexer) and search engine
# (doxysearch.cgi) which are based on the open source search engine library
# Xapian (see: http://xapian.org/).
#
# See the section "External Indexing and Searching" for details.
# The default value is: NO.
# This tag requires that the tag SEARCHENGINE is set to YES.

EXTERNAL_SEARCH        = NO

# The SEARCHENGINE_URL should point to a search engine hosted by a web server
# which will return the search results when EXTERNAL_SEARCH is enabled.
#
# Doxygen ships with an example indexer (doxyindexer) and search engine
# (doxysearch.cgi) which are based on the open source search engine library
# Xapian (see: http://xapian.org/). See the section "External Indexing and
# Searching" for details.
# This tag requires that the tag SEARCHENGINE is set to YES.

#SEARCHENGINE_URL       = @searchengine_url@

# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
# search data is written to a file for indexing by an external tool. With the
# SEARCHDATA_FILE tag the name of this file can be specified.
# The default file is: searchdata.xml.
# This tag requires that the tag SEARCHENGINE is set to YES.

#SEARCHDATA_FILE        = searchdata.xml

# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
# projects and redirect the results back to the right project.
# This tag requires that the tag SEARCHENGINE is set to YES.

#EXTERNAL_SEARCH_ID     = libzmq

# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
# projects other than the one defined by this configuration file, but that are
# all added to the same external search index. Each project needs to have a
# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
# to a relative location where the documentation can be found. The format is:
# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
# This tag requires that the tag SEARCHENGINE is set to YES.

#EXTRA_SEARCH_MAPPINGS  = @extra_search_mappings@

#---------------------------------------------------------------------------
# Configuration options related to the LaTeX output
#---------------------------------------------------------------------------

# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
# The default value is: YES.

GENERATE_LATEX         = NO

# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: latex.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_OUTPUT           =

# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
# invoked.
#
# Note that when enabling USE_PDFLATEX this option is only used for generating
# bitmaps for formulas in the HTML output, but not in the Makefile that is
# written to the output directory.
# The default file is: latex.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_CMD_NAME         = latex

# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
# index for LaTeX.
# The default file is: makeindex.
# This tag requires that the tag GENERATE_LATEX is set to YES.

MAKEINDEX_CMD_NAME     = makeindex

# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
# documents. This may be useful for small projects and may help to save some
# trees in general.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

COMPACT_LATEX          = NO

# The PAPER_TYPE tag can be used to set the paper type that is used by the
# printer.
# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
# 14 inches) and executive (7.25 x 10.5 inches).
# The default value is: a4.
# This tag requires that the tag GENERATE_LATEX is set to YES.

PAPER_TYPE             = a4

# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
# that should be included in the LaTeX output. The package can be specified just
# by its name or with the correct syntax as to be used with the LaTeX
# \usepackage command. To get the times font for instance you can specify :
# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
# To use the option intlimits with the amsmath package you can specify:
# EXTRA_PACKAGES=[intlimits]{amsmath}
# If left blank no extra packages will be included.
# This tag requires that the tag GENERATE_LATEX is set to YES.

EXTRA_PACKAGES         =

# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
# generated LaTeX document. The header should contain everything until the first
# chapter. If it is left blank doxygen will generate a standard header. See
# section "Doxygen usage" for information on how to let doxygen write the
# default header to a separate file.
#
# Note: Only use a user-defined header if you know what you are doing! The
# following commands have a special meaning inside the header: $title,
# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
# $projectbrief, $projectlogo. Doxygen will replace $title with the empty
# string, for the replacement values of the other commands the user is referred
# to HTML_HEADER.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_HEADER           =

# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
# generated LaTeX document. The footer should contain everything after the last
# chapter. If it is left blank doxygen will generate a standard footer. See
# LATEX_HEADER for more information on how to generate a default footer and what
# special commands can be used inside the footer.
#
# Note: Only use a user-defined footer if you know what you are doing!
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_FOOTER           =

# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# LaTeX style sheets that are included after the standard style sheets created
# by doxygen. Using this option one can overrule certain style aspects. Doxygen
# will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list).
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_EXTRA_STYLESHEET =

# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the LATEX_OUTPUT output
# directory. Note that the files will be copied as-is; there are no commands or
# markers available.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_EXTRA_FILES      =

# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
# contain links (just like the HTML output) instead of page references. This
# makes the output suitable for online browsing using a PDF viewer.
# The default value is: YES.
# This tag requires that the tag GENERATE_LATEX is set to YES.

PDF_HYPERLINKS         = NO

# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
# the PDF file directly from the LaTeX files. Set this option to YES, to get a
# higher quality PDF documentation.
# The default value is: YES.
# This tag requires that the tag GENERATE_LATEX is set to YES.

USE_PDFLATEX           = NO

# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
# command to the generated LaTeX files. This will instruct LaTeX to keep running
# if errors occur, instead of asking the user for help. This option is also used
# when generating formulas in HTML.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_BATCHMODE        = NO

# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
# index chapters (such as File Index, Compound Index, etc.) in the output.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_HIDE_INDICES     = NO

# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
# code with syntax highlighting in the LaTeX output.
#
# Note that which sources are shown also depends on other settings such as
# SOURCE_BROWSER.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_SOURCE_CODE      = NO

# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
# bibliography, e.g. plainnat, or ieeetr. See
# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
# The default value is: plain.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_BIB_STYLE        = plain

# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
# page will contain the date and time when the page was generated. Setting this
# to NO can help when comparing the output of multiple runs.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_TIMESTAMP        = NO

#---------------------------------------------------------------------------
# Configuration options related to the RTF output
#---------------------------------------------------------------------------

# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
# RTF output is optimized for Word 97 and may not look too pretty with other RTF
# readers/editors.
# The default value is: NO.

GENERATE_RTF           = NO

# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: rtf.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_OUTPUT             =

# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
# documents. This may be useful for small projects and may help to save some
# trees in general.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.

COMPACT_RTF            = NO

# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
# contain hyperlink fields. The RTF file will contain links (just like the HTML
# output) instead of page references. This makes the output suitable for online
# browsing using Word or some other Word compatible readers that support those
# fields.
#
# Note: WordPad (write) and others do not support links.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_HYPERLINKS         = NO

# Load stylesheet definitions from file. Syntax is similar to doxygen's config
# file, i.e. a series of assignments. You only have to provide replacements,
# missing definitions are set to their default value.
#
# See also section "Doxygen usage" for information on how to generate the
# default style sheet that doxygen normally uses.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_STYLESHEET_FILE    =

# Set optional variables used in the generation of an RTF document. Syntax is
# similar to doxygen's config file. A template extensions file can be generated
# using doxygen -e rtf extensionFile.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_EXTENSIONS_FILE    =

# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code
# with syntax highlighting in the RTF output.
#
# Note that which sources are shown also depends on other settings such as
# SOURCE_BROWSER.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_SOURCE_CODE        = NO

#---------------------------------------------------------------------------
# Configuration options related to the man page output
#---------------------------------------------------------------------------

# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
# classes and files.
# The default value is: NO.

GENERATE_MAN           = NO

# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it. A directory man3 will be created inside the directory specified by
# MAN_OUTPUT.
# The default directory is: man.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_OUTPUT             =

# The MAN_EXTENSION tag determines the extension that is added to the generated
# man pages. In case the manual section does not start with a number, the number
# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
# optional.
# The default value is: .3.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_EXTENSION          =

# The MAN_SUBDIR tag determines the name of the directory created within
# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
# MAN_EXTENSION with the initial . removed.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_SUBDIR             =

# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
# will generate one additional man file for each entity documented in the real
# man page(s). These additional files only source the real man page, but without
# them the man command would be unable to find the correct page.
# The default value is: NO.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_LINKS              = NO

#---------------------------------------------------------------------------
# Configuration options related to the XML output
#---------------------------------------------------------------------------

# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
# captures the structure of the code including all documentation.
# The default value is: NO.

GENERATE_XML           = NO

# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: xml.
# This tag requires that the tag GENERATE_XML is set to YES.

XML_OUTPUT             = xml

# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size
# of the XML output.
# The default value is: YES.
# This tag requires that the tag GENERATE_XML is set to YES.

XML_PROGRAMLISTING     = YES

#---------------------------------------------------------------------------
# Configuration options related to the DOCBOOK output
#---------------------------------------------------------------------------

# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
# that can be used to generate PDF.
# The default value is: NO.

GENERATE_DOCBOOK       = NO

# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
# front of it.
# The default directory is: docbook.
# This tag requires that the tag GENERATE_DOCBOOK is set to YES.

DOCBOOK_OUTPUT         = docbook

# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the
# program listings (including syntax highlighting and cross-referencing
# information) to the DOCBOOK output. Note that enabling this will significantly
# increase the size of the DOCBOOK output.
# The default value is: NO.
# This tag requires that the tag GENERATE_DOCBOOK is set to YES.

DOCBOOK_PROGRAMLISTING = NO

#---------------------------------------------------------------------------
# Configuration options for the AutoGen Definitions output
#---------------------------------------------------------------------------

# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
# AutoGen Definitions (see http://autogen.sf.net) file that captures the
# structure of the code including all documentation. Note that this feature is
# still experimental and incomplete at the moment.
# The default value is: NO.

GENERATE_AUTOGEN_DEF   = NO

#---------------------------------------------------------------------------
# Configuration options related to the Perl module output
#---------------------------------------------------------------------------

# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
# file that captures the structure of the code including all documentation.
#
# Note that this feature is still experimental and incomplete at the moment.
# The default value is: NO.

GENERATE_PERLMOD       = NO

# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
# output from the Perl module output.
# The default value is: NO.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.

PERLMOD_LATEX          = NO

# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
# formatted so it can be parsed by a human reader. This is useful if you want to
# understand what is going on. On the other hand, if this tag is set to NO, the
# size of the Perl module output will be much smaller and Perl will parse it
# just the same.
# The default value is: YES.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.

PERLMOD_PRETTY         = YES

# The names of the make variables in the generated doxyrules.make file are
# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
# so different doxyrules.make files included by the same Makefile don't
# overwrite each other's variables.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.

PERLMOD_MAKEVAR_PREFIX =

#-------------------------------------------------------------------------
Download .txt
gitextract_okhb0yyr/

├── .clang-format
├── .clang-tidy
├── .git-blame-ignore-revs
├── .github/
│   ├── CONTRIBUTING.md
│   ├── issue_template.md
│   ├── stale.yml
│   └── workflows/
│       ├── CI.yaml
│       ├── Docs.yaml
│       └── Fuzzers.yaml
├── .gitignore
├── .hgeol
├── .mailmap
├── .obs/
│   └── workflows.yml
├── .readthedocs.yaml
├── .travis.yml
├── AUTHORS
├── CMakeLists.txt
├── Dockerfile
├── Doxygen.cfg
├── INSTALL
├── Jenkinsfile
├── LICENSE
├── Makefile.am
├── NEWS
├── README.cygwin.md
├── README.doxygen.md
├── README.md
├── SECURITY.md
├── SupportedPlatforms.md
├── acinclude.m4
├── appveyor.yml
├── autogen.sh
├── build_qnx/
│   ├── Makefile
│   ├── common.mk
│   ├── nto/
│   │   ├── Makefile
│   │   ├── aarch64/
│   │   │   ├── Makefile
│   │   │   └── le/
│   │   │       └── Makefile
│   │   └── x86_64/
│   │       ├── Makefile
│   │       └── o/
│   │           └── Makefile
│   └── qnx.nto.toolchain.cmake
├── builds/
│   ├── Makefile.am
│   ├── README
│   ├── abi-compliance-checker/
│   │   └── ci_build.sh
│   ├── android/
│   │   ├── Dockerfile
│   │   ├── README.md
│   │   ├── android_build_helper.sh
│   │   ├── build.sh
│   │   └── ci_build.sh
│   ├── cmake/
│   │   ├── Modules/
│   │   │   ├── ClangFormat.cmake
│   │   │   ├── FindAsciiDoctor.cmake
│   │   │   ├── FindNSS3.cmake
│   │   │   ├── Findgssapi_krb5.cmake
│   │   │   ├── Findsodium.cmake
│   │   │   ├── TestZMQVersion.cmake
│   │   │   ├── ZMQSourceRunChecks.cmake
│   │   │   └── ZMQSupportMacros.cmake
│   │   ├── NSIS.template32.in
│   │   ├── NSIS.template64.in
│   │   ├── ZeroMQConfig.cmake.in
│   │   ├── ci_build.sh
│   │   ├── clang-format-check.sh.in
│   │   └── platform.hpp.in
│   ├── coverage/
│   │   └── ci_build.sh
│   ├── cygwin/
│   │   └── Makefile.cygwin
│   ├── deprecated-msvc/
│   │   ├── .gitignore
│   │   ├── Makefile.am
│   │   ├── errno.cpp
│   │   ├── errno.hpp
│   │   ├── platform.hpp
│   │   ├── properties/
│   │   │   ├── Common.props
│   │   │   ├── DLL.props
│   │   │   ├── Debug.props
│   │   │   ├── DebugDEXE.props
│   │   │   ├── DebugDLL.props
│   │   │   ├── DebugLEXE.props
│   │   │   ├── DebugLIB.props
│   │   │   ├── DebugLTCG.props
│   │   │   ├── DebugSEXE.props
│   │   │   ├── EXE.props
│   │   │   ├── LIB.props
│   │   │   ├── LTCG.props
│   │   │   ├── Link.props
│   │   │   ├── Messages.props
│   │   │   ├── Output.props
│   │   │   ├── Release.props
│   │   │   ├── ReleaseDEXE.props
│   │   │   ├── ReleaseDLL.props
│   │   │   ├── ReleaseLEXE.props
│   │   │   ├── ReleaseLIB.props
│   │   │   ├── ReleaseLTCG.props
│   │   │   ├── ReleaseSEXE.props
│   │   │   ├── Win32.props
│   │   │   └── x64.props
│   │   ├── readme.txt
│   │   ├── resource.h
│   │   ├── resource.rc
│   │   ├── vs2008/
│   │   │   ├── inproc_lat/
│   │   │   │   └── inproc_lat.vcproj
│   │   │   ├── inproc_thr/
│   │   │   │   └── inproc_thr.vcproj
│   │   │   ├── libzmq/
│   │   │   │   └── libzmq.vcproj
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   └── local_lat.vcproj
│   │   │   ├── local_thr/
│   │   │   │   └── local_thr.vcproj
│   │   │   ├── remote_lat/
│   │   │   │   └── remote_lat.vcproj
│   │   │   └── remote_thr/
│   │   │       └── remote_thr.vcproj
│   │   ├── vs2010/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2012/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2013/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2015/
│   │   │   ├── inproc_lat/
│   │   │   │   ├── inproc_lat.props
│   │   │   │   └── inproc_lat.vcxproj
│   │   │   ├── inproc_thr/
│   │   │   │   ├── inproc_thr.props
│   │   │   │   └── inproc_thr.vcxproj
│   │   │   ├── libsodium.import.props
│   │   │   ├── libsodium.import.xml
│   │   │   ├── libzmq/
│   │   │   │   ├── libzmq.props
│   │   │   │   ├── libzmq.vcxproj
│   │   │   │   ├── libzmq.vcxproj.filters
│   │   │   │   └── libzmq.xml
│   │   │   ├── libzmq.import.props
│   │   │   ├── libzmq.import.xml
│   │   │   ├── libzmq.sln
│   │   │   ├── local_lat/
│   │   │   │   ├── local_lat.props
│   │   │   │   └── local_lat.vcxproj
│   │   │   ├── local_thr/
│   │   │   │   ├── local_thr.props
│   │   │   │   └── local_thr.vcxproj
│   │   │   ├── remote_lat/
│   │   │   │   ├── remote_lat.props
│   │   │   │   └── remote_lat.vcxproj
│   │   │   └── remote_thr/
│   │   │       ├── remote_thr.props
│   │   │       └── remote_thr.vcxproj
│   │   ├── vs2015_xp/
│   │   │   ├── libzmq.vcxproj
│   │   │   ├── platform.hpp
│   │   │   └── test_zmq/
│   │   │       ├── test_multithread.cpp
│   │   │       └── test_zmq.vcxproj
│   │   └── vs2017/
│   │       ├── inproc_lat/
│   │       │   ├── inproc_lat.props
│   │       │   └── inproc_lat.vcxproj
│   │       ├── inproc_thr/
│   │       │   ├── inproc_thr.props
│   │       │   └── inproc_thr.vcxproj
│   │       ├── libsodium.import.props
│   │       ├── libsodium.import.xml
│   │       ├── libzmq/
│   │       │   ├── libzmq.props
│   │       │   ├── libzmq.vcxproj
│   │       │   ├── libzmq.vcxproj.filters
│   │       │   └── libzmq.xml
│   │       ├── libzmq.import.props
│   │       ├── libzmq.import.xml
│   │       ├── libzmq.sln
│   │       ├── local_lat/
│   │       │   ├── local_lat.props
│   │       │   └── local_lat.vcxproj
│   │       ├── local_thr/
│   │       │   ├── local_thr.props
│   │       │   └── local_thr.vcxproj
│   │       ├── remote_lat/
│   │       │   ├── remote_lat.props
│   │       │   └── remote_lat.vcxproj
│   │       └── remote_thr/
│   │           ├── remote_thr.props
│   │           └── remote_thr.vcxproj
│   ├── fuzz/
│   │   └── ci_build.sh
│   ├── gyp/
│   │   ├── .gitignore
│   │   ├── build.bat
│   │   ├── platform.hpp
│   │   ├── project-tests.gsl
│   │   ├── project-tests.gypi
│   │   ├── project-tests.xml
│   │   └── project.gyp
│   ├── ios/
│   │   └── build_ios.sh
│   ├── mingw32/
│   │   ├── Makefile.mingw32
│   │   └── platform.hpp
│   ├── nuget/
│   │   ├── libzmq.autopkg
│   │   └── readme.nuget
│   ├── openwrt/
│   │   └── Makefile
│   ├── qnx/
│   │   └── ToolchainQNX6.6_x86.cmake
│   ├── valgrind/
│   │   ├── ci_build.sh
│   │   ├── valgrind.supp
│   │   └── vg
│   ├── vxworks/
│   │   └── platform.hpp
│   └── zos/
│       ├── README.md
│       ├── cxxall
│       ├── makeclean
│       ├── makelibzmq
│       ├── maketests
│       ├── platform.hpp
│       ├── runtests
│       ├── test_fork.cpp
│       └── zc++
├── ci_build.sh
├── ci_deploy.sh
├── config.sh
├── configure.ac
├── doc/
│   ├── Makefile.am
│   ├── asciidoctor.css
│   ├── create_page_list.sh
│   ├── index.adoc
│   ├── zmq.adoc
│   ├── zmq_atomic_counter_dec.adoc
│   ├── zmq_atomic_counter_destroy.adoc
│   ├── zmq_atomic_counter_inc.adoc
│   ├── zmq_atomic_counter_new.adoc
│   ├── zmq_atomic_counter_set.adoc
│   ├── zmq_atomic_counter_value.adoc
│   ├── zmq_bind.adoc
│   ├── zmq_close.adoc
│   ├── zmq_connect.adoc
│   ├── zmq_connect_peer.adoc
│   ├── zmq_ctx_get.adoc
│   ├── zmq_ctx_get_ext.adoc
│   ├── zmq_ctx_new.adoc
│   ├── zmq_ctx_set.adoc
│   ├── zmq_ctx_set_ext.adoc
│   ├── zmq_ctx_shutdown.adoc
│   ├── zmq_ctx_term.adoc
│   ├── zmq_curve.adoc
│   ├── zmq_curve_keypair.adoc
│   ├── zmq_curve_public.adoc
│   ├── zmq_disconnect.adoc
│   ├── zmq_disconnect_peer.adoc
│   ├── zmq_errno.adoc
│   ├── zmq_getsockopt.adoc
│   ├── zmq_gssapi.adoc
│   ├── zmq_has.adoc
│   ├── zmq_inproc.adoc
│   ├── zmq_ipc.adoc
│   ├── zmq_msg_close.adoc
│   ├── zmq_msg_copy.adoc
│   ├── zmq_msg_data.adoc
│   ├── zmq_msg_get.adoc
│   ├── zmq_msg_gets.adoc
│   ├── zmq_msg_init.adoc
│   ├── zmq_msg_init_buffer.adoc
│   ├── zmq_msg_init_data.adoc
│   ├── zmq_msg_init_size.adoc
│   ├── zmq_msg_more.adoc
│   ├── zmq_msg_move.adoc
│   ├── zmq_msg_recv.adoc
│   ├── zmq_msg_routing_id.adoc
│   ├── zmq_msg_send.adoc
│   ├── zmq_msg_set.adoc
│   ├── zmq_msg_set_routing_id.adoc
│   ├── zmq_msg_size.adoc
│   ├── zmq_null.adoc
│   ├── zmq_pgm.adoc
│   ├── zmq_plain.adoc
│   ├── zmq_poll.adoc
│   ├── zmq_poller.adoc
│   ├── zmq_ppoll.adoc
│   ├── zmq_proxy.adoc
│   ├── zmq_proxy_steerable.adoc
│   ├── zmq_recv.adoc
│   ├── zmq_recvmsg.adoc
│   ├── zmq_send.adoc
│   ├── zmq_send_const.adoc
│   ├── zmq_sendmsg.adoc
│   ├── zmq_setsockopt.adoc
│   ├── zmq_socket.adoc
│   ├── zmq_socket_monitor.adoc
│   ├── zmq_socket_monitor_versioned.adoc
│   ├── zmq_strerror.adoc
│   ├── zmq_tcp.adoc
│   ├── zmq_timers.adoc
│   ├── zmq_tipc.adoc
│   ├── zmq_udp.adoc
│   ├── zmq_unbind.adoc
│   ├── zmq_version.adoc
│   ├── zmq_vmci.adoc
│   ├── zmq_vsock.adoc
│   ├── zmq_z85_decode.adoc
│   └── zmq_z85_encode.adoc
├── external/
│   ├── sha1/
│   │   ├── license.txt
│   │   ├── sha1.c
│   │   └── sha1.h
│   ├── unity/
│   │   ├── license.txt
│   │   ├── unity.c
│   │   ├── unity.h
│   │   ├── unity_internals.h
│   │   └── version.txt
│   └── wepoll/
│       ├── README.md
│       ├── license.txt
│       ├── version.txt
│       ├── wepoll.c
│       └── wepoll.h
├── include/
│   ├── zmq.h
│   └── zmq_utils.h
├── m4/
│   ├── ax_check_compile_flag.m4
│   ├── ax_check_vscript.m4
│   ├── ax_code_coverage.m4
│   ├── ax_cxx_compile_stdcxx.m4
│   ├── ax_cxx_compile_stdcxx_11.m4
│   ├── ax_func_posix_memalign.m4
│   └── ax_valgrind_check.m4
├── packaging/
│   ├── README
│   ├── debian/
│   │   ├── changelog
│   │   ├── compat
│   │   ├── control
│   │   ├── copyright
│   │   ├── libzmq3-dev.install
│   │   ├── libzmq3-dev.manpages
│   │   ├── libzmq5.docs
│   │   ├── libzmq5.install
│   │   ├── rules
│   │   ├── source/
│   │   │   └── format
│   │   └── zeromq.dsc
│   ├── nuget/
│   │   ├── package.bat
│   │   ├── package.config
│   │   ├── package.gsl
│   │   ├── package.nuspec
│   │   ├── package.targets
│   │   └── package.xml
│   ├── obs/
│   │   └── _service
│   └── redhat/
│       └── zeromq.spec
├── perf/
│   ├── benchmark_radix_tree.cpp
│   ├── generate_csv.sh
│   ├── generate_graphs.py
│   ├── inproc_lat.cpp
│   ├── inproc_thr.cpp
│   ├── local_lat.cpp
│   ├── local_thr.cpp
│   ├── proxy_thr.cpp
│   ├── remote_lat.cpp
│   └── remote_thr.cpp
├── src/
│   ├── address.cpp
│   ├── address.hpp
│   ├── array.hpp
│   ├── atomic_counter.hpp
│   ├── atomic_ptr.hpp
│   ├── blob.hpp
│   ├── channel.cpp
│   ├── channel.hpp
│   ├── client.cpp
│   ├── client.hpp
│   ├── clock.cpp
│   ├── clock.hpp
│   ├── command.hpp
│   ├── compat.hpp
│   ├── condition_variable.hpp
│   ├── config.hpp
│   ├── ctx.cpp
│   ├── ctx.hpp
│   ├── curve_client.cpp
│   ├── curve_client.hpp
│   ├── curve_client_tools.hpp
│   ├── curve_mechanism_base.cpp
│   ├── curve_mechanism_base.hpp
│   ├── curve_server.cpp
│   ├── curve_server.hpp
│   ├── dbuffer.hpp
│   ├── dealer.cpp
│   ├── dealer.hpp
│   ├── decoder.hpp
│   ├── decoder_allocators.cpp
│   ├── decoder_allocators.hpp
│   ├── devpoll.cpp
│   ├── devpoll.hpp
│   ├── dgram.cpp
│   ├── dgram.hpp
│   ├── dish.cpp
│   ├── dish.hpp
│   ├── dist.cpp
│   ├── dist.hpp
│   ├── encoder.hpp
│   ├── endpoint.cpp
│   ├── endpoint.hpp
│   ├── epoll.cpp
│   ├── epoll.hpp
│   ├── err.cpp
│   ├── err.hpp
│   ├── fd.hpp
│   ├── fq.cpp
│   ├── fq.hpp
│   ├── gather.cpp
│   ├── gather.hpp
│   ├── generic_mtrie.hpp
│   ├── generic_mtrie_impl.hpp
│   ├── gssapi_client.cpp
│   ├── gssapi_client.hpp
│   ├── gssapi_mechanism_base.cpp
│   ├── gssapi_mechanism_base.hpp
│   ├── gssapi_server.cpp
│   ├── gssapi_server.hpp
│   ├── i_decoder.hpp
│   ├── i_encoder.hpp
│   ├── i_engine.hpp
│   ├── i_mailbox.hpp
│   ├── i_poll_events.hpp
│   ├── io_object.cpp
│   ├── io_object.hpp
│   ├── io_thread.cpp
│   ├── io_thread.hpp
│   ├── ip.cpp
│   ├── ip.hpp
│   ├── ip_resolver.cpp
│   ├── ip_resolver.hpp
│   ├── ipc_address.cpp
│   ├── ipc_address.hpp
│   ├── ipc_connecter.cpp
│   ├── ipc_connecter.hpp
│   ├── ipc_listener.cpp
│   ├── ipc_listener.hpp
│   ├── kqueue.cpp
│   ├── kqueue.hpp
│   ├── lb.cpp
│   ├── lb.hpp
│   ├── libzmq.pc.in
│   ├── libzmq.vers
│   ├── likely.hpp
│   ├── macros.hpp
│   ├── mailbox.cpp
│   ├── mailbox.hpp
│   ├── mailbox_safe.cpp
│   ├── mailbox_safe.hpp
│   ├── mechanism.cpp
│   ├── mechanism.hpp
│   ├── mechanism_base.cpp
│   ├── mechanism_base.hpp
│   ├── metadata.cpp
│   ├── metadata.hpp
│   ├── msg.cpp
│   ├── msg.hpp
│   ├── mtrie.cpp
│   ├── mtrie.hpp
│   ├── mutex.hpp
│   ├── norm_engine.cpp
│   ├── norm_engine.hpp
│   ├── null_mechanism.cpp
│   ├── null_mechanism.hpp
│   ├── object.cpp
│   ├── object.hpp
│   ├── options.cpp
│   ├── options.hpp
│   ├── own.cpp
│   ├── own.hpp
│   ├── pair.cpp
│   ├── pair.hpp
│   ├── peer.cpp
│   ├── peer.hpp
│   ├── pgm_receiver.cpp
│   ├── pgm_receiver.hpp
│   ├── pgm_sender.cpp
│   ├── pgm_sender.hpp
│   ├── pgm_socket.cpp
│   ├── pgm_socket.hpp
│   ├── pipe.cpp
│   ├── pipe.hpp
│   ├── plain_client.cpp
│   ├── plain_client.hpp
│   ├── plain_common.hpp
│   ├── plain_server.cpp
│   ├── plain_server.hpp
│   ├── poll.cpp
│   ├── poll.hpp
│   ├── poller.hpp
│   ├── poller_base.cpp
│   ├── poller_base.hpp
│   ├── polling_util.cpp
│   ├── polling_util.hpp
│   ├── pollset.cpp
│   ├── pollset.hpp
│   ├── precompiled.cpp
│   ├── precompiled.hpp
│   ├── proxy.cpp
│   ├── proxy.hpp
│   ├── pub.cpp
│   ├── pub.hpp
│   ├── pull.cpp
│   ├── pull.hpp
│   ├── push.cpp
│   ├── push.hpp
│   ├── radio.cpp
│   ├── radio.hpp
│   ├── radix_tree.cpp
│   ├── radix_tree.hpp
│   ├── random.cpp
│   ├── random.hpp
│   ├── raw_decoder.cpp
│   ├── raw_decoder.hpp
│   ├── raw_encoder.cpp
│   ├── raw_encoder.hpp
│   ├── raw_engine.cpp
│   ├── raw_engine.hpp
│   ├── reaper.cpp
│   ├── reaper.hpp
│   ├── rep.cpp
│   ├── rep.hpp
│   ├── req.cpp
│   ├── req.hpp
│   ├── router.cpp
│   ├── router.hpp
│   ├── scatter.cpp
│   ├── scatter.hpp
│   ├── secure_allocator.hpp
│   ├── select.cpp
│   ├── select.hpp
│   ├── server.cpp
│   ├── server.hpp
│   ├── session_base.cpp
│   ├── session_base.hpp
│   ├── signaler.cpp
│   ├── signaler.hpp
│   ├── socket_base.cpp
│   ├── socket_base.hpp
│   ├── socket_poller.cpp
│   ├── socket_poller.hpp
│   ├── socks.cpp
│   ├── socks.hpp
│   ├── socks_connecter.cpp
│   ├── socks_connecter.hpp
│   ├── stdint.hpp
│   ├── stream.cpp
│   ├── stream.hpp
│   ├── stream_connecter_base.cpp
│   ├── stream_connecter_base.hpp
│   ├── stream_engine_base.cpp
│   ├── stream_engine_base.hpp
│   ├── stream_listener_base.cpp
│   ├── stream_listener_base.hpp
│   ├── sub.cpp
│   ├── sub.hpp
│   ├── tcp.cpp
│   ├── tcp.hpp
│   ├── tcp_address.cpp
│   ├── tcp_address.hpp
│   ├── tcp_connecter.cpp
│   ├── tcp_connecter.hpp
│   ├── tcp_listener.cpp
│   ├── tcp_listener.hpp
│   ├── thread.cpp
│   ├── thread.hpp
│   ├── timers.cpp
│   ├── timers.hpp
│   ├── tipc_address.cpp
│   ├── tipc_address.hpp
│   ├── tipc_connecter.cpp
│   ├── tipc_connecter.hpp
│   ├── tipc_listener.cpp
│   ├── tipc_listener.hpp
│   ├── trie.cpp
│   ├── trie.hpp
│   ├── udp_address.cpp
│   ├── udp_address.hpp
│   ├── udp_engine.cpp
│   ├── udp_engine.hpp
│   ├── v1_decoder.cpp
│   ├── v1_decoder.hpp
│   ├── v1_encoder.cpp
│   ├── v1_encoder.hpp
│   ├── v2_decoder.cpp
│   ├── v2_decoder.hpp
│   ├── v2_encoder.cpp
│   ├── v2_encoder.hpp
│   ├── v2_protocol.hpp
│   ├── v3_1_encoder.cpp
│   ├── v3_1_encoder.hpp
│   ├── version.rc.in
│   ├── vmci.cpp
│   ├── vmci.hpp
│   ├── vmci_address.cpp
│   ├── vmci_address.hpp
│   ├── vmci_connecter.cpp
│   ├── vmci_connecter.hpp
│   ├── vmci_listener.cpp
│   ├── vmci_listener.hpp
│   ├── vsock_address.cpp
│   ├── vsock_address.hpp
│   ├── vsock_connecter.cpp
│   ├── vsock_connecter.hpp
│   ├── vsock_listener.cpp
│   ├── vsock_listener.hpp
│   ├── windows.hpp
│   ├── wire.hpp
│   ├── ws_address.cpp
│   ├── ws_address.hpp
│   ├── ws_connecter.cpp
│   ├── ws_connecter.hpp
│   ├── ws_decoder.cpp
│   ├── ws_decoder.hpp
│   ├── ws_encoder.cpp
│   ├── ws_encoder.hpp
│   ├── ws_engine.cpp
│   ├── ws_engine.hpp
│   ├── ws_listener.cpp
│   ├── ws_listener.hpp
│   ├── ws_protocol.hpp
│   ├── wss_address.cpp
│   ├── wss_address.hpp
│   ├── wss_engine.cpp
│   ├── wss_engine.hpp
│   ├── xpub.cpp
│   ├── xpub.hpp
│   ├── xsub.cpp
│   ├── xsub.hpp
│   ├── ypipe.hpp
│   ├── ypipe_base.hpp
│   ├── ypipe_conflate.hpp
│   ├── yqueue.hpp
│   ├── zap_client.cpp
│   ├── zap_client.hpp
│   ├── zmq.cpp
│   ├── zmq_draft.h
│   ├── zmq_utils.cpp
│   ├── zmtp_engine.cpp
│   └── zmtp_engine.hpp
├── tests/
│   ├── CMakeLists.txt
│   ├── README.md
│   ├── test_abstract_ipc.cpp
│   ├── test_address_tipc.cpp
│   ├── test_ancillaries.cpp
│   ├── test_app_meta.cpp
│   ├── test_atomics.cpp
│   ├── test_base85.cpp
│   ├── test_bind_after_connect_tcp.cpp
│   ├── test_bind_curve_fuzzer.cpp
│   ├── test_bind_fuzzer.cpp
│   ├── test_bind_null_fuzzer.cpp
│   ├── test_bind_src_address.cpp
│   ├── test_bind_stream_fuzzer.cpp
│   ├── test_bind_ws_fuzzer.cpp
│   ├── test_busy_poll.cpp
│   ├── test_capabilities.cpp
│   ├── test_channel.cpp
│   ├── test_client_server.cpp
│   ├── test_conflate.cpp
│   ├── test_connect_curve_fuzzer.cpp
│   ├── test_connect_delay_tipc.cpp
│   ├── test_connect_fuzzer.cpp
│   ├── test_connect_null_fuzzer.cpp
│   ├── test_connect_resolve.cpp
│   ├── test_connect_rid.cpp
│   ├── test_connect_stream_fuzzer.cpp
│   ├── test_connect_ws_fuzzer.cpp
│   ├── test_ctx_destroy.cpp
│   ├── test_ctx_options.cpp
│   ├── test_dgram.cpp
│   ├── test_diffserv.cpp
│   ├── test_disconnect_inproc.cpp
│   ├── test_disconnect_msg.cpp
│   ├── test_filter_ipc.cpp
│   ├── test_fork.cpp
│   ├── test_getsockopt_memset.cpp
│   ├── test_heartbeats.cpp
│   ├── test_hello_msg.cpp
│   ├── test_hiccup_msg.cpp
│   ├── test_hwm.cpp
│   ├── test_hwm_pubsub.cpp
│   ├── test_immediate.cpp
│   ├── test_inproc_connect.cpp
│   ├── test_invalid_rep.cpp
│   ├── test_iov.cpp
│   ├── test_ipc_wildcard.cpp
│   ├── test_issue_566.cpp
│   ├── test_last_endpoint.cpp
│   ├── test_many_sockets.cpp
│   ├── test_metadata.cpp
│   ├── test_mock_pub_sub.cpp
│   ├── test_monitor.cpp
│   ├── test_msg_ffn.cpp
│   ├── test_msg_flags.cpp
│   ├── test_msg_init.cpp
│   ├── test_pair_inproc.cpp
│   ├── test_pair_ipc.cpp
│   ├── test_pair_tcp.cpp
│   ├── test_pair_tcp_cap_net_admin.cpp
│   ├── test_pair_tipc.cpp
│   ├── test_pair_vmci.cpp
│   ├── test_pair_vsock.cpp
│   ├── test_peer.cpp
│   ├── test_peer_disconnect.cpp
│   ├── test_poller.cpp
│   ├── test_probe_router.cpp
│   ├── test_proxy.cpp
│   ├── test_proxy_hwm.cpp
│   ├── test_proxy_single_socket.cpp
│   ├── test_proxy_steerable.cpp
│   ├── test_proxy_terminate.cpp
│   ├── test_pub_invert_matching.cpp
│   ├── test_pubsub.cpp
│   ├── test_pubsub_topics_count.cpp
│   ├── test_radio_dish.cpp
│   ├── test_rebind_ipc.cpp
│   ├── test_reconnect_ivl.cpp
│   ├── test_reconnect_options.cpp
│   ├── test_req_correlate.cpp
│   ├── test_req_relaxed.cpp
│   ├── test_reqrep_device.cpp
│   ├── test_reqrep_device_tipc.cpp
│   ├── test_reqrep_inproc.cpp
│   ├── test_reqrep_ipc.cpp
│   ├── test_reqrep_tcp.cpp
│   ├── test_reqrep_tipc.cpp
│   ├── test_reqrep_vmci.cpp
│   ├── test_reqrep_vsock.cpp
│   ├── test_router_handover.cpp
│   ├── test_router_mandatory.cpp
│   ├── test_router_mandatory_hwm.cpp
│   ├── test_router_mandatory_tipc.cpp
│   ├── test_router_notify.cpp
│   ├── test_scatter_gather.cpp
│   ├── test_security_curve.cpp
│   ├── test_security_gssapi.cpp
│   ├── test_security_no_zap_handler.cpp
│   ├── test_security_null.cpp
│   ├── test_security_plain.cpp
│   ├── test_security_zap.cpp
│   ├── test_setsockopt.cpp
│   ├── test_shutdown_stress.cpp
│   ├── test_shutdown_stress_tipc.cpp
│   ├── test_socket_null.cpp
│   ├── test_socket_options_fuzzer.cpp
│   ├── test_sockopt_hwm.cpp
│   ├── test_socks.cpp
│   ├── test_sodium.cpp
│   ├── test_spec_dealer.cpp
│   ├── test_spec_pushpull.cpp
│   ├── test_spec_rep.cpp
│   ├── test_spec_req.cpp
│   ├── test_spec_router.cpp
│   ├── test_srcfd.cpp
│   ├── test_stream.cpp
│   ├── test_stream_disconnect.cpp
│   ├── test_stream_empty.cpp
│   ├── test_stream_exceeds_buffer.cpp
│   ├── test_stream_timeout.cpp
│   ├── test_sub_forward.cpp
│   ├── test_sub_forward_tipc.cpp
│   ├── test_system.cpp
│   ├── test_tcp_accept_filter.cpp
│   ├── test_term_endpoint.cpp
│   ├── test_term_endpoint_tipc.cpp
│   ├── test_thread_safe.cpp
│   ├── test_timeo.cpp
│   ├── test_timers.cpp
│   ├── test_unbind_wildcard.cpp
│   ├── test_use_fd.cpp
│   ├── test_ws_transport.cpp
│   ├── test_wss_transport.cpp
│   ├── test_xpub_manual.cpp
│   ├── test_xpub_manual_last_value.cpp
│   ├── test_xpub_nodrop.cpp
│   ├── test_xpub_topic.cpp
│   ├── test_xpub_verbose.cpp
│   ├── test_xpub_welcome_msg.cpp
│   ├── test_xsub_verbose.cpp
│   ├── test_z85_decode_fuzzer.cpp
│   ├── test_zmq_poll_fd.cpp
│   ├── test_zmq_ppoll_fd.cpp
│   ├── test_zmq_ppoll_signals.cpp
│   ├── testutil.cpp
│   ├── testutil.hpp
│   ├── testutil_monitoring.cpp
│   ├── testutil_monitoring.hpp
│   ├── testutil_security.cpp
│   ├── testutil_security.hpp
│   ├── testutil_unity.cpp
│   └── testutil_unity.hpp
├── tools/
│   └── curve_keygen.cpp
├── unittests/
│   ├── CMakeLists.txt
│   ├── unittest_curve_encoding.cpp
│   ├── unittest_ip_resolver.cpp
│   ├── unittest_mtrie.cpp
│   ├── unittest_poller.cpp
│   ├── unittest_radix_tree.cpp
│   ├── unittest_resolver_common.hpp
│   ├── unittest_udp_address.cpp
│   └── unittest_ypipe.cpp
└── version.sh
Download .txt
Showing preview only (237K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (2555 symbols across 405 files)

FILE: builds/deprecated-msvc/vs2015_xp/test_zmq/test_multithread.cpp
  function message_fill (line 33) | void message_fill(zmq_msg_t* msg, int val) {
  function message_check (line 46) | int message_check(zmq_msg_t* msg) {
  function worker (line 83) | void worker(int num) {
  function server (line 103) | void server() {
  function client (line 134) | void client(int num)
  function main (line 193) | int main (void) {

FILE: builds/zos/test_fork.cpp
  function main (line 11) | int main (void)

FILE: external/sha1/sha1.c
  type sha1_ctxt (line 76) | struct sha1_ctxt
  function sha1_step (line 78) | static void
  function sha1_init (line 223) | void
  function sha1_pad (line 234) | void
  function sha1_loop (line 277) | void
  function sha1_result (line 305) | void

FILE: external/sha1/sha1.h
  type sha1_ctxt (line 48) | struct sha1_ctxt
  type sha1_ctxt (line 68) | struct sha1_ctxt
  type sha1_ctxt (line 69) | struct sha1_ctxt
  type sha1_ctxt (line 70) | struct sha1_ctxt
  type sha1_ctxt (line 71) | struct sha1_ctxt
  type SHA_CTX (line 75) | typedef struct sha1_ctxt SHA_CTX;

FILE: external/unity/unity.c
  type UNITY_STORAGE_T (line 21) | struct UNITY_STORAGE_T
  function UnityPrint (line 70) | void UnityPrint(const char* string)
  function UnityPrintLen (line 119) | void UnityPrintLen(const char* string, const UNITY_UINT32 length)
  function UnityPrintNumberByStyle (line 157) | void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY...
  function UnityPrintNumber (line 176) | void UnityPrintNumber(const UNITY_INT number_to_print)
  function UnityPrintNumberUnsigned (line 191) | void UnityPrintNumberUnsigned(const UNITY_UINT number)
  function UnityPrintNumberHex (line 210) | void UnityPrintNumberHex(const UNITY_UINT number, const char nibbles_to_...
  function UnityPrintMask (line 233) | void UnityPrintMask(const UNITY_UINT mask, const UNITY_UINT number)
  function UnityPrintFloat (line 266) | void UnityPrintFloat(const UNITY_DOUBLE input_number)
  function UnityTestResultsBegin (line 357) | static void UnityTestResultsBegin(const char* file, const UNITY_LINE_TYP...
  function UnityTestResultsFailBegin (line 368) | static void UnityTestResultsFailBegin(const UNITY_LINE_TYPE line)
  function UnityConcludeTest (line 376) | void UnityConcludeTest(void)
  function UnityAddMsgIfSpecified (line 399) | static void UnityAddMsgIfSpecified(const char* msg)
  function UnityPrintExpectedAndActualStrings (line 422) | static void UnityPrintExpectedAndActualStrings(const char* expected, con...
  function UnityPrintExpectedAndActualStringsLen (line 449) | static void UnityPrintExpectedAndActualStringsLen(const char* expected,
  function UnityIsOneArrayNull (line 481) | static int UnityIsOneArrayNull(UNITY_INTERNAL_PTR expected,
  function UnityAssertBits (line 513) | void UnityAssertBits(const UNITY_INT mask,
  function UnityAssertEqualNumber (line 534) | void UnityAssertEqualNumber(const UNITY_INT expected,
  function UnityAssertGreaterOrLessOrEqualNumber (line 555) | void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold,
  function UnityAssertEqualIntArray (line 601) | void UnityAssertEqualIntArray(UNITY_INTERNAL_PTR expected,
  function UnityFloatsWithin (line 706) | static int UnityFloatsWithin(UNITY_FLOAT delta, UNITY_FLOAT expected, UN...
  function UnityAssertEqualFloatArray (line 712) | void UnityAssertEqualFloatArray(UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* e...
  function UnityAssertFloatsWithin (line 754) | void UnityAssertFloatsWithin(const UNITY_FLOAT delta,
  function UnityAssertFloatSpecial (line 773) | void UnityAssertFloatSpecial(const UNITY_FLOAT actual,
  function UnityDoublesWithin (line 836) | static int UnityDoublesWithin(UNITY_DOUBLE delta, UNITY_DOUBLE expected,...
  function UnityAssertEqualDoubleArray (line 842) | void UnityAssertEqualDoubleArray(UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE*...
  function UnityAssertDoublesWithin (line 884) | void UnityAssertDoublesWithin(const UNITY_DOUBLE delta,
  function UnityAssertDoubleSpecial (line 903) | void UnityAssertDoubleSpecial(const UNITY_DOUBLE actual,
  function UnityAssertNumbersWithin (line 965) | void UnityAssertNumbersWithin(const UNITY_UINT delta,
  function UnityAssertEqualString (line 1004) | void UnityAssertEqualString(const char* expected,
  function UnityAssertEqualStringLen (line 1043) | void UnityAssertEqualStringLen(const char* expected,
  function UnityAssertEqualStringArray (line 1083) | void UnityAssertEqualStringArray(UNITY_INTERNAL_PTR expected,
  function UnityAssertEqualMemory (line 1162) | void UnityAssertEqualMemory(UNITY_INTERNAL_PTR expected,
  function UNITY_INTERNAL_PTR (line 1237) | UNITY_INTERNAL_PTR UnityNumToPtr(const UNITY_INT num, const UNITY_UINT8 ...
  function UNITY_INTERNAL_PTR (line 1261) | UNITY_INTERNAL_PTR UnityFloatToPtr(const float num)
  function UNITY_INTERNAL_PTR (line 1269) | UNITY_INTERNAL_PTR UnityDoubleToPtr(const double num)
  function UnityFail (line 1280) | void UnityFail(const char* msg, const UNITY_LINE_TYPE line)
  function UnityIgnore (line 1314) | void UnityIgnore(const char* msg, const UNITY_LINE_TYPE line)
  function UnityDefaultTestRun (line 1330) | void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, c...
  function UnityBegin (line 1349) | void UnityBegin(const char* filename)
  function UnityEnd (line 1365) | int UnityEnd(void)
  function UnityParseOptions (line 1403) | int UnityParseOptions(int argc, char** argv)
  function IsStringInBiggerString (line 1459) | int IsStringInBiggerString(const char* longstring, const char* shortstring)
  function UnityStringArgumentMatches (line 1500) | int UnityStringArgumentMatches(const char* str)
  function UnityTestMatches (line 1549) | int UnityTestMatches(void)

FILE: external/unity/unity.h
  function UNITY_WEAK_ATTRIBUTE (line 39) | UNITY_WEAK_ATTRIBUTE void setUp(void) { }
  function UNITY_WEAK_ATTRIBUTE (line 40) | UNITY_WEAK_ATTRIBUTE void tearDown(void) { }
  function UNITY_WEAK_ATTRIBUTE (line 41) | UNITY_WEAK_ATTRIBUTE void suiteSetUp(void) { }
  function UNITY_WEAK_ATTRIBUTE (line 42) | UNITY_WEAK_ATTRIBUTE int suiteTearDown(int num_failures) { return num_fa...
  function setUp (line 45) | void setUp(void) { }
  function tearDown (line 47) | void tearDown(void) { }
  function suiteSetUp (line 49) | void suiteSetUp(void) { }
  function suiteTearDown (line 51) | int suiteTearDown(int num_failures) { return num_failures; }

FILE: external/unity/unity_internals.h
  type UNITY_UINT8 (line 92) | typedef unsigned char   UNITY_UINT8;
  type UNITY_UINT16 (line 93) | typedef unsigned short  UNITY_UINT16;
  type UNITY_UINT32 (line 94) | typedef unsigned int    UNITY_UINT32;
  type UNITY_INT8 (line 95) | typedef signed char     UNITY_INT8;
  type UNITY_INT16 (line 96) | typedef signed short    UNITY_INT16;
  type UNITY_INT32 (line 97) | typedef signed int      UNITY_INT32;
  type UNITY_UINT8 (line 99) | typedef unsigned char   UNITY_UINT8;
  type UNITY_UINT16 (line 100) | typedef unsigned int    UNITY_UINT16;
  type UNITY_UINT32 (line 101) | typedef unsigned long   UNITY_UINT32;
  type UNITY_INT8 (line 102) | typedef signed char     UNITY_INT8;
  type UNITY_INT16 (line 103) | typedef signed int      UNITY_INT16;
  type UNITY_INT32 (line 104) | typedef signed long     UNITY_INT32;
  type UNITY_UINT32 (line 121) | typedef UNITY_UINT32 UNITY_UINT;
  type UNITY_INT32 (line 122) | typedef UNITY_INT32 UNITY_INT;
  type UNITY_UINT64 (line 127) | typedef unsigned long long UNITY_UINT64;
  type UNITY_INT64 (line 128) | typedef signed long long   UNITY_INT64;
  type UNITY_UINT64 (line 130) | typedef unsigned long      UNITY_UINT64;
  type UNITY_INT64 (line 131) | typedef signed long        UNITY_INT64;
  type UNITY_UINT64 (line 135) | typedef UNITY_UINT64 UNITY_UINT;
  type UNITY_INT64 (line 136) | typedef UNITY_INT64 UNITY_INT;
  type UNITY_FLOAT_TYPE (line 188) | typedef UNITY_FLOAT_TYPE UNITY_FLOAT;
  type UNITY_FLOAT (line 222) | typedef UNITY_FLOAT UNITY_DOUBLE;
  type UNITY_DOUBLE_TYPE (line 236) | typedef UNITY_DOUBLE_TYPE UNITY_DOUBLE;
  type UNITY_DISPLAY_STYLE_T (line 327) | typedef enum
  type UNITY_COMPARISON_T (line 355) | typedef enum
  type UNITY_FLOAT_TRAIT_T (line 365) | typedef enum UNITY_FLOAT_TRAIT
  type UNITY_FLAGS_T (line 379) | typedef enum
  type UNITY_STORAGE_T (line 385) | struct UNITY_STORAGE_T
  type UNITY_STORAGE_T (line 404) | struct UNITY_STORAGE_T

FILE: external/wepoll/wepoll.c
  type EPOLL_EVENTS (line 38) | enum EPOLL_EVENTS {
  type SOCKET (line 71) | typedef uintptr_t SOCKET;
  type epoll_data_t (line 73) | typedef union epoll_data {
  type epoll_event (line 82) | struct epoll_event {
  type epoll_event (line 99) | struct epoll_event
  type epoll_event (line 102) | struct epoll_event
  type LONG (line 143) | typedef LONG NTSTATUS;
  type NTSTATUS (line 144) | typedef NTSTATUS* PNTSTATUS;
  type IO_STATUS_BLOCK (line 166) | typedef struct _IO_STATUS_BLOCK {
  type UNICODE_STRING (line 175) | typedef struct _UNICODE_STRING {
  type OBJECT_ATTRIBUTES (line 184) | typedef struct _OBJECT_ATTRIBUTES {
  type AFD_POLL_HANDLE_INFO (line 282) | typedef struct _AFD_POLL_HANDLE_INFO {
  type AFD_POLL_INFO (line 288) | typedef struct _AFD_POLL_INFO {
  function afd_create_device_handle (line 328) | int afd_create_device_handle(HANDLE iocp_handle,
  function afd_poll (line 366) | int afd_poll(HANDLE afd_device_handle,
  function afd_cancel_poll (line 394) | int afd_cancel_poll(HANDLE afd_device_handle,
  type port_state_t (line 419) | typedef struct port_state port_state_t;
  type queue_t (line 420) | typedef struct queue queue_t;
  type sock_state_t (line 421) | typedef struct sock_state sock_state_t;
  type ts_tree_node_t (line 422) | typedef struct ts_tree_node ts_tree_node_t;
  type epoll_event (line 429) | struct epoll_event
  type epoll_event (line 436) | struct epoll_event
  type reflock_t (line 482) | typedef struct reflock {
  type tree_t (line 499) | typedef struct tree tree_t;
  type tree_node_t (line 500) | typedef struct tree_node tree_node_t;
  type tree_t (line 502) | typedef struct tree {
  type tree_node_t (line 506) | typedef struct tree_node {
  type ts_tree_t (line 523) | typedef struct ts_tree {
  type ts_tree_node_t (line 528) | typedef struct ts_tree_node {
  function epoll_global_init (line 550) | int epoll_global_init(void) {
  function HANDLE (line 555) | static HANDLE epoll__create(void) {
  function HANDLE (line 577) | HANDLE epoll_create(int size) {
  function HANDLE (line 584) | HANDLE epoll_create1(int flags) {
  function epoll_close (line 591) | int epoll_close(HANDLE ephnd) {
  function epoll_ctl (line 616) | int epoll_ctl(HANDLE ephnd, int op, SOCKET sock, struct epoll_event* ev) {
  function epoll_wait (line 648) | int epoll_wait(HANDLE ephnd,
  function errno_t (line 788) | static errno_t err__map_win_error_to_errno(DWORD error) {
  function err_map_win_error (line 799) | void err_map_win_error(void) {
  function err_set_win_error (line 803) | void err_set_win_error(DWORD error) {
  function err_check_handle (line 808) | int err_check_handle(HANDLE handle) {
  function BOOL (line 842) | static BOOL CALLBACK init__once_callback(INIT_ONCE* once,
  function init (line 858) | int init(void) {
  type FARPROC (line 879) | typedef FARPROC nt__fn_ptr_cast_t;
  function nt_global_init (line 887) | int nt_global_init(void) {
  type poll_group_t (line 908) | typedef struct poll_group poll_group_t;
  type queue_node_t (line 910) | typedef struct queue_node queue_node_t;
  type queue_node_t (line 922) | typedef struct queue_node {
  type queue_t (line 927) | typedef struct queue {
  type poll_group_t (line 948) | typedef struct poll_group {
  function poll_group_t (line 955) | static poll_group_t* poll_group__new(port_state_t* port_state) {
  function poll_group_delete (line 979) | void poll_group_delete(poll_group_t* poll_group) {
  function poll_group_t (line 986) | poll_group_t* poll_group_from_queue_node(queue_node_t* queue_node) {
  function HANDLE (line 990) | HANDLE poll_group_get_afd_device_handle(poll_group_t* poll_group) {
  function poll_group_t (line 994) | poll_group_t* poll_group_acquire(port_state_t* port_state) {
  function poll_group_release (line 1014) | void poll_group_release(poll_group_t* poll_group) {
  type epoll_event (line 1035) | struct epoll_event
  type epoll_event (line 1041) | struct epoll_event
  type port_state_t (line 1053) | typedef struct port_state {
  function port_state_t (line 1064) | static inline port_state_t* port__alloc(void) {
  function port__free (line 1072) | static inline void port__free(port_state_t* port) {
  function HANDLE (line 1077) | static inline HANDLE port__create_iocp(void) {
  function port_state_t (line 1086) | port_state_t* port_new(HANDLE* iocp_handle_out) {
  function port__close_iocp (line 1117) | static inline int port__close_iocp(port_state_t* port_state) {
  function port_close (line 1127) | int port_close(port_state_t* port_state) {
  function port_delete (line 1137) | int port_delete(port_state_t* port_state) {
  function port__update_events (line 1168) | static int port__update_events(port_state_t* port_state) {
  function port__update_events_if_polling (line 1186) | static inline void port__update_events_if_polling(port_state_t* port_sta...
  function port__feed_events (line 1191) | static inline int port__feed_events(port_state_t* port_state,
  function port__poll (line 1209) | static inline int port__poll(port_state_t* port_state,
  function port_wait (line 1241) | int port_wait(port_state_t* port_state,
  function port__ctl_add (line 1319) | static inline int port__ctl_add(port_state_t* port_state,
  function port__ctl_mod (line 1336) | static inline int port__ctl_mod(port_state_t* port_state,
  function port__ctl_del (line 1351) | static inline int port__ctl_del(port_state_t* port_state, SOCKET sock) {
  function port__ctl_op (line 1361) | static inline int port__ctl_op(port_state_t* port_state,
  function port_ctl (line 1377) | int port_ctl(port_state_t* port_state,
  function port_register_socket (line 1390) | int port_register_socket(port_state_t* port_state,
  function port_unregister_socket (line 1400) | void port_unregister_socket(port_state_t* port_state,
  function sock_state_t (line 1405) | sock_state_t* port_find_socket(port_state_t* port_state, SOCKET socket) {
  function port_request_socket_update (line 1412) | void port_request_socket_update(port_state_t* port_state,
  function port_cancel_socket_update (line 1420) | void port_cancel_socket_update(port_state_t* port_state,
  function port_add_deleted_socket (line 1428) | void port_add_deleted_socket(port_state_t* port_state,
  function port_remove_deleted_socket (line 1436) | void port_remove_deleted_socket(port_state_t* port_state,
  function HANDLE (line 1444) | HANDLE port_get_iocp_handle(port_state_t* port_state) {
  function queue_t (line 1449) | queue_t* port_get_poll_group_queue(port_state_t* port_state) {
  function port_state_t (line 1453) | port_state_t* port_state_from_handle_tree_node(ts_tree_node_t* tree_node) {
  function ts_tree_node_t (line 1457) | ts_tree_node_t* port_state_to_handle_tree_node(port_state_t* port_state) {
  function queue_init (line 1461) | void queue_init(queue_t* queue) {
  function queue_node_init (line 1465) | void queue_node_init(queue_node_t* node) {
  function queue__detach_node (line 1470) | static inline void queue__detach_node(queue_node_t* node) {
  function queue_node_t (line 1475) | queue_node_t* queue_first(const queue_t* queue) {
  function queue_node_t (line 1479) | queue_node_t* queue_last(const queue_t* queue) {
  function queue_prepend (line 1483) | void queue_prepend(queue_t* queue, queue_node_t* node) {
  function queue_append (line 1490) | void queue_append(queue_t* queue, queue_node_t* node) {
  function queue_move_to_start (line 1497) | void queue_move_to_start(queue_t* queue, queue_node_t* node) {
  function queue_move_to_end (line 1502) | void queue_move_to_end(queue_t* queue, queue_node_t* node) {
  function queue_remove (line 1507) | void queue_remove(queue_node_t* node) {
  function queue_is_empty (line 1512) | bool queue_is_empty(const queue_t* queue) {
  function queue_is_enqueued (line 1516) | bool queue_is_enqueued(const queue_node_t* node) {
  function reflock_global_init (line 1528) | int reflock_global_init(void) {
  function reflock_init (line 1536) | void reflock_init(reflock_t* reflock) {
  function reflock__signal_event (line 1540) | static void reflock__signal_event(void* address) {
  function reflock__await_event (line 1547) | static void reflock__await_event(void* address) {
  function reflock_ref (line 1554) | void reflock_ref(reflock_t* reflock) {
  function reflock_unref (line 1562) | void reflock_unref(reflock_t* reflock) {
  function reflock_unref_and_destroy (line 1572) | void reflock_unref_and_destroy(reflock_t* reflock) {
  type sock__poll_status_t (line 1591) | typedef enum sock__poll_status {
  type sock_state_t (line 1597) | typedef struct sock_state {
  function sock_state_t (line 1611) | static inline sock_state_t* sock__alloc(void) {
  function sock__free (line 1618) | static inline void sock__free(sock_state_t* sock_state) {
  function sock__cancel_poll (line 1623) | static inline int sock__cancel_poll(sock_state_t* sock_state) {
  function sock_state_t (line 1635) | sock_state_t* sock_new(port_state_t* port_state, SOCKET socket) {
  function sock__delete (line 1676) | static int sock__delete(port_state_t* port_state,
  function sock_delete (line 1705) | void sock_delete(port_state_t* port_state, sock_state_t* sock_state) {
  function sock_force_delete (line 1709) | void sock_force_delete(port_state_t* port_state, sock_state_t* sock_stat...
  function sock_set_event (line 1713) | int sock_set_event(port_state_t* port_state,
  function DWORD (line 1730) | static inline DWORD sock__epoll_events_to_afd_events(uint32_t epoll_even...
  function sock__afd_events_to_epoll_events (line 1751) | static inline uint32_t sock__afd_events_to_epoll_events(DWORD afd_events) {
  function sock_update (line 1772) | int sock_update(port_state_t* port_state, sock_state_t* sock_state) {
  function sock_feed_event (line 1834) | int sock_feed_event(port_state_t* port_state,
  function sock_state_t (line 1889) | sock_state_t* sock_state_from_queue_node(queue_node_t* queue_node) {
  function queue_node_t (line 1893) | queue_node_t* sock_state_to_queue_node(sock_state_t* sock_state) {
  function sock_state_t (line 1897) | sock_state_t* sock_state_from_tree_node(tree_node_t* tree_node) {
  function tree_node_t (line 1901) | tree_node_t* sock_state_to_tree_node(sock_state_t* sock_state) {
  function ts_tree_init (line 1905) | void ts_tree_init(ts_tree_t* ts_tree) {
  function ts_tree_node_init (line 1910) | void ts_tree_node_init(ts_tree_node_t* node) {
  function ts_tree_add (line 1915) | int ts_tree_add(ts_tree_t* ts_tree, ts_tree_node_t* node, uintptr_t key) {
  function ts_tree_node_t (line 1925) | static inline ts_tree_node_t* ts_tree__find_node(ts_tree_t* ts_tree,
  function ts_tree_node_t (line 1934) | ts_tree_node_t* ts_tree_del_and_ref(ts_tree_t* ts_tree, uintptr_t key) {
  function ts_tree_node_t (line 1950) | ts_tree_node_t* ts_tree_find_and_ref(ts_tree_t* ts_tree, uintptr_t key) {
  function ts_tree_node_unref (line 1964) | void ts_tree_node_unref(ts_tree_node_t* node) {
  function ts_tree_node_unref_and_destroy (line 1968) | void ts_tree_node_unref_and_destroy(ts_tree_node_t* node) {
  function tree_init (line 1972) | void tree_init(tree_t* tree) {
  function tree_node_init (line 1976) | void tree_node_init(tree_node_t* node) {
  function tree__rotate_left (line 2001) | static inline void tree__rotate_left(tree_t* tree, tree_node_t* node) {
  function tree__rotate_right (line 2005) | static inline void tree__rotate_right(tree_t* tree, tree_node_t* node) {
  function tree_add (line 2036) | int tree_add(tree_t* tree, tree_node_t* node, uintptr_t key) {
  function tree_del (line 2096) | void tree_del(tree_t* tree, tree_node_t* node) {
  function tree_node_t (line 2169) | tree_node_t* tree_find(const tree_t* tree, uintptr_t key) {
  function tree_node_t (line 2182) | tree_node_t* tree_root(const tree_t* tree) {
  function ws_global_init (line 2194) | int ws_global_init(void) {
  function SOCKET (line 2205) | static inline SOCKET ws__ioctl_get_bsp_socket(SOCKET socket, DWORD ioctl) {
  function SOCKET (line 2223) | SOCKET ws_get_base_socket(SOCKET socket) {

FILE: external/wepoll/wepoll.h
  type EPOLL_EVENTS (line 41) | enum EPOLL_EVENTS {
  type SOCKET (line 74) | typedef uintptr_t SOCKET;
  type epoll_data_t (line 76) | typedef union epoll_data {
  type epoll_event (line 85) | struct epoll_event {
  type epoll_event (line 102) | struct epoll_event
  type epoll_event (line 105) | struct epoll_event

FILE: include/zmq.h
  type __int32 (line 66) | typedef __int32 int32_t;
  type zmq_msg_t (line 218) | typedef struct zmq_msg_t
  type zmq_fd_t (line 470) | typedef unsigned __int64 zmq_fd_t;
  type zmq_fd_t (line 472) | typedef unsigned int zmq_fd_t;
  type zmq_fd_t (line 475) | typedef int zmq_fd_t;
  type zmq_pollitem_t (line 487) | typedef struct zmq_pollitem_t
  type iovec (line 525) | struct iovec
  type iovec (line 527) | struct iovec
  type iovec (line 529) | struct iovec
  type zmq_poller_event_t (line 721) | typedef struct zmq_poller_event_t

FILE: perf/benchmark_radix_tree.cpp
  function benchmark_lookup (line 24) | void benchmark_lookup (T &subscriptions_,
  function main (line 54) | int main ()
  function main (line 100) | int main ()

FILE: perf/generate_graphs.py
  function plot_throughput (line 29) | def plot_throughput(csv_filename, title, is_tcp=False):
  function plot_latency (line 56) | def plot_latency(csv_filename, title):

FILE: perf/inproc_lat.cpp
  function main (line 82) | int main (int argc, char *argv[])

FILE: perf/inproc_thr.cpp
  function main (line 79) | int main (int argc, char *argv[])

FILE: perf/local_lat.cpp
  function main (line 7) | int main (int argc, char *argv[])

FILE: perf/local_thr.cpp
  function main (line 10) | int main (int argc, char *argv[])

FILE: perf/proxy_thr.cpp
  function test_assert_success_message_errno_helper (line 76) | int test_assert_success_message_errno_helper (int rc_,
  function set_hwm (line 92) | static void set_hwm (void *skt)
  function publisher_thread_main (line 103) | static void publisher_thread_main (void *pvoid)
  function subscriber_thread_main (line 166) | static void subscriber_thread_main (void *pvoid)
  function proxy_thread_main (line 205) | static void proxy_thread_main (void *pvoid)
  function terminate_proxy (line 274) | void terminate_proxy (const proxy_hwm_cfg_t *cfg)
  function main (line 298) | int main (int argc, char *argv[])

FILE: perf/remote_lat.cpp
  function main (line 8) | int main (int argc, char *argv[])

FILE: perf/remote_thr.cpp
  function main (line 13) | int main (int argc, char *argv[])

FILE: src/address.cpp
  type sockaddr (line 130) | struct sockaddr
  type sockaddr (line 131) | struct sockaddr

FILE: src/address.hpp
  type zmq (line 16) | namespace zmq
    class ctx_t (line 18) | class ctx_t
    class tcp_address_t (line 19) | class tcp_address_t
    class udp_address_t (line 20) | class udp_address_t
    class ws_address_t (line 21) | class ws_address_t
    class wss_address_t (line 23) | class wss_address_t
    class ipc_address_t (line 26) | class ipc_address_t
    class tipc_address_t (line 29) | class tipc_address_t
    class vmci_address_t (line 32) | class vmci_address_t
    class vsock_address_t (line 35) | class vsock_address_t
    type protocol_name (line 38) | namespace protocol_name
    type address_t (line 70) | struct address_t
    type socket_end_t (line 119) | enum socket_end_t
    function get_socket_name (line 129) | std::string get_socket_name (fd_t fd_, socket_end_t socket_end_)

FILE: src/array.hpp
  function array_item_t (line 29) | array_item_t () : _array_index (-1) {}
  function set_array_index (line 35) | void set_array_index (int index_) { _array_index = index_; }
  function get_array_index (line 37) | int get_array_index () const { return _array_index; }
  class array_t (line 46) | class array_t
    method size_type (line 56) | size_type size () { return _items.size (); }
    method empty (line 58) | bool empty () { return _items.empty (); }
    method T (line 60) | T *&operator[] (size_type index_) { return _items[index_]; }
    method push_back (line 62) | void push_back (T *item_)
    method erase (line 70) | void erase (T *item_)
    method erase (line 75) | void erase (size_type index_)
    method swap (line 86) | void swap (size_type index1_, size_type index2_)
    method clear (line 97) | void clear () { _items.clear (); }
    method size_type (line 99) | static size_type index (T *item_)

FILE: src/atomic_counter.hpp
  type zmq (line 43) | namespace zmq
    class atomic_counter_t (line 57) | class __declspec (align (8)) atomic_counter_t
      method atomic_counter_t (line 67) | atomic_counter_t (integer_t value_ = 0) ZMQ_NOEXCEPT : _value (value...
      method set (line 70) | void set (integer_t value_) ZMQ_NOEXCEPT { _value = value_; }
      method integer_t (line 73) | integer_t add (integer_t increment_) ZMQ_NOEXCEPT
      method sub (line 118) | bool sub (integer_t decrement_) ZMQ_NOEXCEPT
      method integer_t (line 173) | integer_t get () const ZMQ_NOEXCEPT { return _value; }
    class atomic_counter_t (line 59) | class __declspec (align (4)) atomic_counter_t
      method atomic_counter_t (line 67) | atomic_counter_t (integer_t value_ = 0) ZMQ_NOEXCEPT : _value (value...
      method set (line 70) | void set (integer_t value_) ZMQ_NOEXCEPT { _value = value_; }
      method integer_t (line 73) | integer_t add (integer_t increment_) ZMQ_NOEXCEPT
      method sub (line 118) | bool sub (integer_t decrement_) ZMQ_NOEXCEPT
      method integer_t (line 173) | integer_t get () const ZMQ_NOEXCEPT { return _value; }
    class atomic_counter_t (line 61) | class atomic_counter_t
      method atomic_counter_t (line 67) | atomic_counter_t (integer_t value_ = 0) ZMQ_NOEXCEPT : _value (value...
      method set (line 70) | void set (integer_t value_) ZMQ_NOEXCEPT { _value = value_; }
      method integer_t (line 73) | integer_t add (integer_t increment_) ZMQ_NOEXCEPT
      method sub (line 118) | bool sub (integer_t decrement_) ZMQ_NOEXCEPT
      method integer_t (line 173) | integer_t get () const ZMQ_NOEXCEPT { return _value; }

FILE: src/atomic_ptr.hpp
  type zmq (line 42) | namespace zmq
    class atomic_ptr_t (line 150) | class atomic_ptr_t
      method atomic_ptr_t (line 154) | atomic_ptr_t () ZMQ_NOEXCEPT { _ptr = NULL; }
      method set (line 159) | void set (T *ptr_) ZMQ_NOEXCEPT { _ptr = ptr_; }
      method T (line 163) | T *xchg (T *val_) ZMQ_NOEXCEPT
      method T (line 181) | T *cas (T *cmp_, T *val_) ZMQ_NOEXCEPT
    type atomic_value_t (line 212) | struct atomic_value_t
      method atomic_value_t (line 214) | atomic_value_t (const int value_) ZMQ_NOEXCEPT : _value (value_) {}
      method atomic_value_t (line 216) | atomic_value_t (const atomic_value_t &src_) ZMQ_NOEXCEPT
      method store (line 221) | void store (const int value_) ZMQ_NOEXCEPT
      method load (line 235) | int load () const ZMQ_NOEXCEPT

FILE: src/blob.hpp
  function make_pair_fix_const (line 22) | std::pair<const K, V> make_pair_fix_const (const K &k, const V &v)
  type zmq (line 36) | namespace zmq
    type reference_tag_t (line 38) | struct reference_tag_t
    type blob_t (line 46) | struct blob_t
      method blob_t (line 49) | blob_t () : _data (0), _size (0), _owned (true) {}
      method blob_t (line 52) | explicit blob_t (const size_t size_) :
      method blob_t (line 62) | blob_t (const unsigned char *const data_, const size_t size_) :
      method blob_t (line 77) | blob_t (unsigned char *const data_, const size_t size_, reference_ta...
      method size (line 83) | size_t size () const { return _size; }
      method set_deep_copy (line 100) | void set_deep_copy (blob_t const &other_)
      method set (line 113) | void set (const unsigned char *const data_, const size_t size_)
      method clear (line 126) | void clear ()
      method blob_t (line 143) | blob_t (const blob_t &) = delete;
      method blob_t (line 144) | blob_t &operator= (const blob_t &) = delete;
      method blob_t (line 146) | blob_t (blob_t &&other_) ZMQ_NOEXCEPT : _data (other_._data),
      method blob_t (line 152) | blob_t &operator= (blob_t &&other_) ZMQ_NOEXCEPT
      method blob_t (line 164) | blob_t (const blob_t &other) : _owned (false) { set_deep_copy (other...
      method blob_t (line 165) | blob_t &operator= (const blob_t &other)

FILE: src/channel.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/channel.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class msg_t (line 13) | class msg_t
    class pipe_t (line 14) | class pipe_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class channel_t ZMQ_FINAL : public socket_base_t

FILE: src/client.cpp
  class ctx_t (line 9) | class ctx_t

FILE: src/client.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class msg_t (line 13) | class msg_t
    class pipe_t (line 14) | class pipe_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class client_t ZMQ_FINAL : public socket_base_t

FILE: src/clock.cpp
  function alt_clock_gettime (line 36) | int alt_clock_gettime (int clock_id, timespec *ts)
  function ULONGLONG (line 54) | ULONGLONG compatible_get_tick_count64 ()
  function f_compatible_get_tick_count64 (line 77) | f_compatible_get_tick_count64 init_compatible_get_tick_count64 ()
  type timespec (line 143) | struct timespec
  type timeval (line 157) | struct timeval
  type timeval (line 173) | struct timeval
  type timespec (line 248) | struct timespec

FILE: src/clock.hpp
  type zmq (line 25) | namespace zmq
    class clock_t (line 27) | class clock_t

FILE: src/command.hpp
  type zmq (line 11) | namespace zmq
    class object_t (line 13) | class object_t
    class own_t (line 14) | class own_t
    type i_engine (line 15) | struct i_engine
    class pipe_t (line 16) | class pipe_t
    class socket_base_t (line 17) | class socket_base_t
    type command_t (line 21) | struct command_t
      type type_t (line 26) | enum type_t
      type i_engine (line 75) | struct i_engine

FILE: src/compat.hpp
  function strlcpy (line 17) | static inline size_t
  function strcpy_s (line 29) | static inline int strcpy_s (char (&dest_)[size], const char *const src_)
  function strnlen (line 37) | static inline size_t strnlen (const char *s, size_t len)

FILE: src/condition_variable.hpp
  type zmq (line 13) | namespace zmq
    class condition_variable_t (line 15) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 38) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 74) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 114) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 204) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
  type zmq (line 36) | namespace zmq
    class condition_variable_t (line 15) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 38) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 74) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 114) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 204) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
  type zmq (line 72) | namespace zmq
    class condition_variable_t (line 15) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 38) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 74) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 114) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 204) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
  type zmq (line 112) | namespace zmq
    class condition_variable_t (line 15) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 38) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 74) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 114) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 204) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
  type timespec (line 199) | struct timespec
  type zmq (line 202) | namespace zmq
    class condition_variable_t (line 15) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 38) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 74) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 114) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()
    class condition_variable_t (line 204) | class condition_variable_t
      method condition_variable_t (line 18) | inline condition_variable_t () { zmq_assert (false); }
      method wait (line 20) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 26) | inline void broadcast () { zmq_assert (false); }
      method condition_variable_t (line 41) | inline condition_variable_t () { InitializeConditionVariable (&_cv); }
      method wait (line 43) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 59) | inline void broadcast () { WakeAllConditionVariable (&_cv); }
      method wait (line 79) | int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 95) | void broadcast ()
      method wait (line 127) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 175) | inline void broadcast ()
      method condition_variable_t (line 207) | inline condition_variable_t ()
      method wait (line 224) | inline int wait (mutex_t *mutex_, int timeout_)
      method broadcast (line 271) | inline void broadcast ()

FILE: src/config.hpp
  type zmq (line 6) | namespace zmq

FILE: src/ctx.cpp
  function clipped_maxsocket (line 43) | static int clipped_maxsocket (int max_requested_)
  class socket_base_t (line 503) | class socket_base_t

FILE: src/ctx.hpp
  type zmq (line 20) | namespace zmq
    class object_t (line 22) | class object_t
    class io_thread_t (line 23) | class io_thread_t
    class socket_base_t (line 24) | class socket_base_t
    class reaper_t (line 25) | class reaper_t
    class pipe_t (line 26) | class pipe_t
    type endpoint_t (line 31) | struct endpoint_t
    class thread_ctx_t (line 37) | class thread_ctx_t
    function thread_ctx_t (line 66) | class ctx_t ZMQ_FINAL : public thread_ctx_t

FILE: src/curve_client.hpp
  type zmq (line 12) | namespace zmq
    class msg_t (line 14) | class msg_t
    class session_base_t (line 15) | class session_base_t
    function curve_mechanism_base_t (line 17) | class curve_client_t ZMQ_FINAL : public curve_mechanism_base_t

FILE: src/curve_client_tools.hpp
  type zmq (line 24) | namespace zmq
    type curve_client_tools_t (line 26) | struct curve_client_tools_t
      method produce_hello (line 28) | static int produce_hello (void *data_,
      method process_welcome (line 67) | static int process_welcome (const uint8_t *msg_data_,
      method produce_initiate (line 111) | static int produce_initiate (void *data_,
      method is_handshake_command_welcome (line 201) | static bool is_handshake_command_welcome (const uint8_t *msg_data_,
      method is_handshake_command_ready (line 207) | static bool is_handshake_command_ready (const uint8_t *msg_data_,
      method is_handshake_command_error (line 213) | static bool is_handshake_command_error (const uint8_t *msg_data_,
      method curve_client_tools_t (line 220) | curve_client_tools_t (
      method produce_hello (line 237) | int produce_hello (void *data_, const uint64_t cn_nonce_) const
      method process_welcome (line 243) | int process_welcome (const uint8_t *msg_data_,
      method produce_initiate (line 251) | int produce_initiate (void *data_,
      method is_handshake_command (line 286) | static bool is_handshake_command (const uint8_t *msg_data_,

FILE: src/curve_mechanism_base.hpp
  class curve_encoding_t (line 26) | class curve_encoding_t
    method nonce_t (line 41) | nonce_t get_and_inc_nonce () { return _cn_nonce++; }
    method set_peer_nonce (line 42) | void set_peer_nonce (nonce_t peer_nonce_) { _cn_peer_nonce = peer_nonc...
    class curve_mechanism_base_t (line 61) | class curve_mechanism_base_t : public virtual mechanism_base_t,

FILE: src/curve_server.hpp
  type zmq (line 12) | namespace zmq
    class curve_server_t (line 18) | class curve_server_t

FILE: src/dbuffer.hpp
  type zmq (line 13) | namespace zmq
    class dbuffer_t (line 29) | class dbuffer_t
    class dbuffer_t<msg_t> (line 31) | class dbuffer_t<msg_t>
      method dbuffer_t (line 34) | dbuffer_t () : _back (&_storage[0]), _front (&_storage[1]), _has_msg...
      method write (line 46) | void write (const msg_t &value_)
      method read (line 61) | bool read (msg_t *value_)
      method check_read (line 82) | bool check_read ()
      method probe (line 89) | bool probe (bool (*fn_) (const msg_t &))

FILE: src/dealer.cpp
  class ctx_t (line 9) | class ctx_t

FILE: src/dealer.hpp
  type zmq (line 11) | namespace zmq
    class ctx_t (line 13) | class ctx_t
    class msg_t (line 14) | class msg_t
    class pipe_t (line 15) | class pipe_t
    class io_thread_t (line 16) | class io_thread_t
    class socket_base_t (line 17) | class socket_base_t
    class dealer_t (line 19) | class dealer_t : public socket_base_t

FILE: src/decoder.hpp
  type zmq (line 15) | namespace zmq
    class decoder_base_t (line 30) | class decoder_base_t : public i_decoder
      method decoder_base_t (line 33) | explicit decoder_base_t (const size_t buf_size_) :
      method get_buffer (line 42) | void get_buffer (unsigned char **data_, std::size_t *size_) ZMQ_FINAL
      method decode (line 70) | int decode (const unsigned char *data_,
      method resize_buffer (line 120) | void resize_buffer (std::size_t new_size_) ZMQ_FINAL
      method next_step (line 132) | void next_step (void *read_pos_, std::size_t to_read_, step_t next_)
      method A (line 139) | A &get_allocator () { return _allocator; }

FILE: src/decoder_allocators.hpp
  class c_single_allocator (line 16) | class c_single_allocator
    method c_single_allocator (line 19) | explicit c_single_allocator (std::size_t bufsize_) :
    method deallocate (line 30) | void deallocate () {}
    method size (line 32) | std::size_t size () const { return _buf_size; }
    method resize (line 35) | void resize (std::size_t new_size_) { LIBZMQ_UNUSED (new_size_); }
    class shared_message_memory_allocator (line 53) | class shared_message_memory_allocator
      method resize (line 89) | void resize (std::size_t new_size_) { _buf_size = new_size_; }
      method advance_content (line 93) | void advance_content () { _msg_content++; }

FILE: src/devpoll.cpp
  type pollfd (line 39) | struct pollfd
  type pollfd (line 131) | struct pollfd
  type dvpoll (line 132) | struct dvpoll

FILE: src/devpoll.hpp
  type zmq (line 17) | namespace zmq
    type i_poll_events (line 19) | struct i_poll_events
    function worker_poller_base_t (line 23) | class devpoll_t ZMQ_FINAL : public worker_poller_base_t

FILE: src/dgram.cpp
  class ctx_t (line 12) | class ctx_t

FILE: src/dgram.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class msg_t (line 13) | class msg_t
    class pipe_t (line 14) | class pipe_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class dgram_t ZMQ_FINAL : public socket_base_t

FILE: src/dish.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/dish.hpp
  class ctx_t (line 16) | class ctx_t
  class pipe_t (line 17) | class pipe_t
  class io_thread_t (line 18) | class io_thread_t
  class dish_t (line 20) | class dish_t
  function session_base_t (line 66) | class dish_session_t ZMQ_FINAL : public session_base_t

FILE: src/dist.hpp
  type zmq (line 11) | namespace zmq
    class pipe_t (line 13) | class pipe_t
    class msg_t (line 14) | class msg_t
    class dist_t (line 18) | class dist_t

FILE: src/encoder.hpp
  type zmq (line 21) | namespace zmq
    class encoder_base_t (line 27) | class encoder_base_t : public i_encoder
      method encoder_base_t (line 30) | explicit encoder_base_t (size_t bufsize_) :
      method encode (line 47) | size_t encode (unsigned char **data_, size_t size_) ZMQ_FINAL
      method load_msg (line 102) | void load_msg (msg_t *msg_) ZMQ_FINAL
      method next_step (line 115) | void next_step (void *write_pos_,
      method msg_t (line 126) | msg_t *in_progress () { return _in_progress; }

FILE: src/endpoint.hpp
  type zmq (line 8) | namespace zmq
    type endpoint_type_t (line 10) | enum endpoint_type_t
    type endpoint_uri_pair_t (line 17) | struct endpoint_uri_pair_t
      method endpoint_uri_pair_t (line 19) | endpoint_uri_pair_t () : local_type (endpoint_type_none) {}
      method endpoint_uri_pair_t (line 20) | endpoint_uri_pair_t (const std::string &local,
      method clash (line 32) | bool clash () const { return local == remote; }

FILE: src/epoll.hpp
  type zmq (line 24) | namespace zmq
    type i_poll_events (line 26) | struct i_poll_events
    function worker_poller_base_t (line 31) | class epoll_t ZMQ_FINAL : public worker_poller_base_t

FILE: src/err.hpp
  type zmq (line 29) | namespace zmq
  type zmq (line 48) | namespace zmq

FILE: src/fd.hpp
  type zmq (line 10) | namespace zmq

FILE: src/fq.hpp
  type zmq (line 9) | namespace zmq
    class msg_t (line 11) | class msg_t
    class pipe_t (line 12) | class pipe_t
    class fq_t (line 18) | class fq_t

FILE: src/gather.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/gather.hpp
  type zmq (line 9) | namespace zmq
    class ctx_t (line 11) | class ctx_t
    class pipe_t (line 12) | class pipe_t
    class msg_t (line 13) | class msg_t
    function socket_base_t (line 15) | class gather_t ZMQ_FINAL : public socket_base_t

FILE: src/generic_mtrie.hpp
  type zmq (line 13) | namespace zmq
    class generic_mtrie_t (line 16) | class generic_mtrie_t
      type rm_result (line 22) | enum rm_result
      method num_prefixes (line 62) | uint32_t num_prefixes () const { return _num_prefixes.get (); }
      class generic_mtrie_t<value_t> (line 77) | class generic_mtrie_t<value_t>
      class generic_mtrie_t<value_t> (line 78) | class generic_mtrie_t<value_t>
      type iter (line 81) | struct iter

FILE: src/generic_mtrie_impl.hpp
  type zmq (line 17) | namespace zmq
    type iter (line 147) | struct iter
    type iter (line 150) | struct iter
    type iter (line 190) | struct iter
    type iter (line 219) | struct iter
    type iter (line 388) | struct iter
    type iter (line 389) | struct iter
    type iter (line 434) | struct iter

FILE: src/gssapi_client.hpp
  type zmq (line 10) | namespace zmq
    class msg_t (line 12) | class msg_t
    class session_base_t (line 13) | class session_base_t
    function gssapi_mechanism_base_t (line 15) | class gssapi_client_t ZMQ_FINAL : public gssapi_mechanism_base_t

FILE: src/gssapi_mechanism_base.cpp
  function gss_OID (line 330) | const gss_OID zmq::gssapi_mechanism_base_t::convert_nametype (int zmq_na...

FILE: src/gssapi_mechanism_base.hpp
  type zmq (line 16) | namespace zmq
    class msg_t (line 18) | class msg_t
    class gssapi_mechanism_base_t (line 24) | class gssapi_mechanism_base_t : public virtual mechanism_base_t

FILE: src/gssapi_server.hpp
  type zmq (line 11) | namespace zmq
    class msg_t (line 13) | class msg_t
    class session_base_t (line 14) | class session_base_t
    class gssapi_server_t (line 16) | class gssapi_server_t
    type state_t (line 34) | enum state_t

FILE: src/i_decoder.hpp
  type zmq (line 9) | namespace zmq
    class msg_t (line 11) | class msg_t
    class i_decoder (line 15) | class i_decoder

FILE: src/i_encoder.hpp
  type zmq (line 9) | namespace zmq
    class msg_t (line 12) | class msg_t
    type i_encoder (line 16) | struct i_encoder

FILE: src/i_engine.hpp
  type zmq (line 9) | namespace zmq
    class io_thread_t (line 11) | class io_thread_t
    type i_engine (line 15) | struct i_engine
      type error_reason_t (line 17) | enum error_reason_t
      class session_base_t (line 32) | class session_base_t

FILE: src/i_mailbox.hpp
  type zmq (line 9) | namespace zmq
    class i_mailbox (line 13) | class i_mailbox

FILE: src/i_poll_events.hpp
  type zmq (line 8) | namespace zmq
    type i_poll_events (line 13) | struct i_poll_events

FILE: src/io_object.hpp
  type zmq (line 12) | namespace zmq
    class io_thread_t (line 14) | class io_thread_t
    class io_object_t (line 20) | class io_object_t : public i_poll_events

FILE: src/io_thread.hpp
  type zmq (line 12) | namespace zmq
    class ctx_t (line 14) | class ctx_t
    class io_thread_t (line 19) | class io_thread_t

FILE: src/ip.cpp
  type zmq (line 27) | namespace zmq
  type sockaddr_storage (line 149) | struct sockaddr_storage
  type sockaddr (line 170) | struct sockaddr
  type sockaddr (line 179) | struct sockaddr
  type sockaddr_storage (line 180) | struct sockaddr_storage
  function tune_socket (line 321) | static void tune_socket (const SOCKET socket_)
  function make_fdpair_tcpip (line 332) | static int make_fdpair_tcpip (zmq::fd_t *r_, zmq::fd_t *w_)
  type sockaddr (line 608) | struct sockaddr
  type sockaddr (line 620) | struct sockaddr
  type sockaddr_in (line 697) | struct sockaddr_in
  type sockaddr (line 713) | struct sockaddr
  type sockaddr (line 718) | struct sockaddr
  type sockaddr (line 733) | struct sockaddr
  type sockaddr_in (line 743) | struct sockaddr_in
  type sockaddr (line 757) | struct sockaddr
  type sockaddr (line 762) | struct sockaddr
  type sockaddr (line 775) | struct sockaddr
  type stat (line 932) | struct stat

FILE: src/ip.hpp
  type zmq (line 9) | namespace zmq

FILE: src/ip_resolver.cpp
  type sockaddr (line 47) | struct sockaddr
  type in6_addr (line 83) | struct in6_addr
  type lifreq (line 422) | struct lifreq
  type ifreq (line 483) | struct ifreq
  type sockaddr_in (line 503) | struct sockaddr_in
  type sockaddr_in6 (line 504) | struct sockaddr_in6
  type sockaddr_in (line 555) | struct sockaddr_in
  type sockaddr_in6 (line 556) | struct sockaddr_in6
  type sockaddr_in (line 675) | struct sockaddr_in
  type sockaddr_in6 (line 676) | struct sockaddr_in6
  type addrinfo (line 718) | struct addrinfo
  type addrinfo (line 719) | struct addrinfo
  type addrinfo (line 724) | struct addrinfo

FILE: src/ip_resolver.hpp
  type zmq (line 14) | namespace zmq
    type sockaddr (line 26) | struct sockaddr
    class ip_resolver_options_t (line 34) | class ip_resolver_options_t
    class ip_resolver_t (line 62) | class ip_resolver_t
      type addrinfo (line 74) | struct addrinfo
      type addrinfo (line 75) | struct addrinfo
      type addrinfo (line 77) | struct addrinfo

FILE: src/ipc_address.cpp
  function sockaddr (line 83) | const sockaddr *zmq::ipc_address_t::addr () const
  function socklen_t (line 88) | socklen_t zmq::ipc_address_t::addrlen () const

FILE: src/ipc_address.hpp
  type zmq (line 19) | namespace zmq
    class ipc_address_t (line 21) | class ipc_address_t
      type sockaddr_un (line 38) | struct sockaddr_un

FILE: src/ipc_connecter.cpp
  class io_thread_t (line 28) | class io_thread_t
  class session_base_t (line 29) | class session_base_t

FILE: src/ipc_connecter.hpp
  type zmq (line 11) | namespace zmq
    function stream_connecter_base_t (line 13) | class ipc_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/ipc_listener.cpp
  type ucred (line 210) | struct ucred
  type passwd (line 223) | struct passwd
  type group (line 224) | struct group
  type xucred (line 250) | struct xucred
  type sockaddr_storage (line 280) | struct sockaddr_storage
  type sockaddr (line 289) | struct sockaddr

FILE: src/ipc_listener.hpp
  type zmq (line 13) | namespace zmq
    function stream_listener_base_t (line 15) | class ipc_listener_t ZMQ_FINAL : public stream_listener_base_t

FILE: src/kqueue.cpp
  type kevent (line 50) | struct kevent
  type kevent (line 59) | struct kevent
  type kevent (line 161) | struct kevent

FILE: src/kqueue.hpp
  type zmq (line 18) | namespace zmq
    type i_poll_events (line 20) | struct i_poll_events
    function worker_poller_base_t (line 25) | class kqueue_t ZMQ_FINAL : public worker_poller_base_t

FILE: src/lb.hpp
  type zmq (line 8) | namespace zmq
    class msg_t (line 10) | class msg_t
    class pipe_t (line 11) | class pipe_t
    class lb_t (line 16) | class lb_t

FILE: src/mailbox.hpp
  type zmq (line 16) | namespace zmq
    function ZMQ_FINAL (line 18) | class mailbox_t ZMQ_FINAL : public i_mailbox

FILE: src/mailbox_safe.hpp
  type zmq (line 18) | namespace zmq
    function ZMQ_FINAL (line 20) | class mailbox_safe_t ZMQ_FINAL : public i_mailbox

FILE: src/mechanism.cpp
  function property_len (line 99) | static size_t property_len (size_t name_len_, size_t value_len_)
  function name_len (line 104) | static size_t name_len (const char *name_)
  function strequals (line 275) | static bool strequals (const char *actual_type_,

FILE: src/mechanism.hpp
  type zmq (line 11) | namespace zmq
    class msg_t (line 13) | class msg_t
    class session_base_t (line 14) | class session_base_t
    class mechanism_t (line 19) | class mechanism_t
      type status_t (line 22) | enum status_t
      method encode (line 39) | virtual int encode (msg_t *) { return 0; }
      method decode (line 41) | virtual int decode (msg_t *) { return 0; }
      method zap_msg_available (line 44) | virtual int zap_msg_available () { return 0; }

FILE: src/mechanism_base.hpp
  type zmq (line 8) | namespace zmq
    class msg_t (line 10) | class msg_t
    class mechanism_base_t (line 12) | class mechanism_base_t : public mechanism_t

FILE: src/metadata.hpp
  type zmq (line 11) | namespace zmq
    class metadata_t (line 13) | class metadata_t

FILE: src/msg.hpp
  type zmq (line 25) | namespace zmq
    class msg_t (line 33) | class msg_t
      type content_t (line 43) | struct content_t
      method is_subscribe (line 113) | bool is_subscribe () const
      method is_cancel (line 118) | bool is_cancel () const
      type type_t (line 168) | enum type_t
      type group_type_t (line 192) | enum group_type_t
      type long_group_t (line 198) | struct long_group_t
    function close_and_return (line 300) | inline int close_and_return (zmq::msg_t *msg_, int echo_)
    function close_and_return (line 310) | inline int close_and_return (zmq::msg_t msg_[], int count_, int echo_)

FILE: src/mtrie.cpp
  type zmq (line 7) | namespace zmq
    class generic_mtrie_t<pipe_t> (line 9) | class generic_mtrie_t<pipe_t>

FILE: src/mtrie.hpp
  type zmq (line 14) | namespace zmq
    class pipe_t (line 16) | class pipe_t
    class generic_mtrie_t<pipe_t> (line 19) | class generic_mtrie_t<pipe_t>

FILE: src/mutex.hpp
  type zmq (line 15) | namespace zmq
    class mutex_t (line 17) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
    class mutex_t (line 46) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
    class mutex_t (line 82) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
  type zmq (line 44) | namespace zmq
    class mutex_t (line 17) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
    class mutex_t (line 46) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
    class mutex_t (line 82) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
  type zmq (line 80) | namespace zmq
    class mutex_t (line 17) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
    class mutex_t (line 46) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
    class mutex_t (line 82) | class mutex_t
      method mutex_t (line 20) | mutex_t () { InitializeCriticalSection (&_cs); }
      method lock (line 24) | void lock () { EnterCriticalSection (&_cs); }
      method try_lock (line 26) | bool try_lock () { return (TryEnterCriticalSection (&_cs)) ? true : ...
      method unlock (line 28) | void unlock () { LeaveCriticalSection (&_cs); }
      method CRITICAL_SECTION (line 30) | CRITICAL_SECTION *get_cs () { return &_cs; }
      method mutex_t (line 49) | inline mutex_t ()
      method lock (line 57) | inline void lock () { semTake (_semId, WAIT_FOREVER); }
      method try_lock (line 59) | inline bool try_lock ()
      method unlock (line 67) | inline void unlock () { semGive (_semId); }
      method mutex_t (line 85) | inline mutex_t ()
      method lock (line 106) | inline void lock ()
      method try_lock (line 112) | inline bool try_lock ()
      method unlock (line 122) | inline void unlock ()
      method pthread_mutex_t (line 128) | inline pthread_mutex_t *get_mutex () { return &_mutex; }
  function scoped_lock_t (line 145) | scoped_lock_t (mutex_t &mutex_) : _mutex (mutex_) { _mutex.lock (); }
  type scoped_optional_lock_t (line 156) | struct scoped_optional_lock_t
    method scoped_optional_lock_t (line 158) | scoped_optional_lock_t (mutex_t *mutex_) : _mutex (mutex_)

FILE: src/norm_engine.cpp
  type norm_wrapper_thread_args_t (line 19) | struct norm_wrapper_thread_args_t
  function DWORD (line 813) | DWORD WINAPI normWrapperThread (LPVOID lpParam)

FILE: src/norm_engine.hpp
  type zmq (line 20) | namespace zmq
    class io_thread_t (line 22) | class io_thread_t
    class msg_t (line 23) | class msg_t
    class session_base_t (line 24) | class session_base_t
    class norm_engine_t (line 26) | class norm_engine_t
    function has_handshake_stage (line 36) | bool has_handshake_stage () ZMQ_FINAL { return false; }
    class session_base_t (line 41) | class session_base_t
    function zap_msg_available (line 55) | void zap_msg_available () ZMQ_FINAL {}
    class NormRxStreamState (line 76) | class NormRxStreamState
      method NormObjectHandle (line 85) | NormObjectHandle GetStreamHandle () const { return norm_stream; }
      method SetRxReady (line 89) | void SetRxReady (bool state) { rx_ready = state; }
      method IsRxReady (line 90) | bool IsRxReady () const { return rx_ready; }
      method SetSync (line 92) | void SetSync (bool state) { in_sync = state; }
      method InSync (line 93) | bool InSync () const { return in_sync; }
      method GetBytesNeeded (line 98) | size_t GetBytesNeeded () const { return buffer_size - buffer_count; }
      method IncrementBufferCount (line 99) | void IncrementBufferCount (size_t count) { buffer_count += count; }
      method msg_t (line 100) | msg_t *AccessMsg () { return zmq_decoder->msg (); }
      class List (line 108) | class List
        method IsEmpty (line 117) | bool IsEmpty () const { return NULL == head; }
        class Iterator (line 121) | class Iterator
      method List (line 140) | List *AccessList () { return list; }
        method IsEmpty (line 117) | bool IsEmpty () const { return NULL == head; }
        class Iterator (line 121) | class Iterator

FILE: src/null_mechanism.hpp
  type zmq (line 10) | namespace zmq
    class msg_t (line 12) | class msg_t
    class session_base_t (line 13) | class session_base_t
    function zap_client_t (line 15) | class null_mechanism_t ZMQ_FINAL : public zap_client_t

FILE: src/object.cpp
  class socket_base_t (line 378) | class socket_base_t
  class socket_base_t (line 500) | class socket_base_t

FILE: src/object.hpp
  type zmq (line 12) | namespace zmq
    type i_engine (line 14) | struct i_engine
    type endpoint_t (line 15) | struct endpoint_t
    type pending_connection_t (line 16) | struct pending_connection_t
    type command_t (line 17) | struct command_t
    class ctx_t (line 18) | class ctx_t
    class pipe_t (line 19) | class pipe_t
    class socket_base_t (line 20) | class socket_base_t
    class session_base_t (line 21) | class session_base_t
    class io_thread_t (line 22) | class io_thread_t
    class own_t (line 23) | class own_t
    class object_t (line 28) | class object_t

FILE: src/options.cpp
  function sockopt_invalid (line 22) | static int sockopt_invalid ()
  function do_getsockopt_curve_key (line 60) | static int do_getsockopt_curve_key (void *const optval_,
  function do_setsockopt (line 78) | static int do_setsockopt (const void *const optval_,
  function do_setsockopt_string_allow_empty_strict (line 117) | static int
  function do_setsockopt_string_allow_empty_relaxed (line 136) | static int
  function do_setsockopt_set (line 152) | static int do_setsockopt_set (const void *const optval_,

FILE: src/options.hpp
  type zmq (line 32) | namespace zmq
    type options_t (line 34) | struct options_t
    function get_effective_conflate_option (line 303) | inline bool get_effective_conflate_option (const options_t &options)
    function do_getsockopt (line 318) | int do_getsockopt (void *const optval_, size_t *const optvallen_, T va...

FILE: src/own.cpp
  class ctx_t (line 8) | class ctx_t

FILE: src/own.hpp
  type zmq (line 13) | namespace zmq
    class ctx_t (line 15) | class ctx_t
    class io_thread_t (line 16) | class io_thread_t
    class own_t (line 21) | class own_t : public object_t

FILE: src/pair.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/pair.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class msg_t (line 13) | class msg_t
    class pipe_t (line 14) | class pipe_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class pair_t ZMQ_FINAL : public socket_base_t

FILE: src/peer.cpp
  class ctx_t (line 12) | class ctx_t

FILE: src/peer.hpp
  type zmq (line 15) | namespace zmq
    class ctx_t (line 17) | class ctx_t
    class msg_t (line 18) | class msg_t
    class pipe_t (line 19) | class pipe_t
    function ZMQ_FINAL (line 21) | class peer_t ZMQ_FINAL : public server_t

FILE: src/pgm_receiver.cpp
  class io_thread_t (line 17) | class io_thread_t

FILE: src/pgm_receiver.hpp
  type zmq (line 17) | namespace zmq
    class io_thread_t (line 19) | class io_thread_t
    class session_base_t (line 20) | class session_base_t
    class pgm_receiver_t (line 22) | class pgm_receiver_t
    function has_handshake_stage (line 31) | bool has_handshake_stage () { return false; }
    function zap_msg_available (line 36) | void zap_msg_available () {}
    type peer_info_t (line 69) | struct peer_info_t
    type tsi_comp (line 75) | struct tsi_comp

FILE: src/pgm_sender.hpp
  type zmq (line 16) | namespace zmq
    class io_thread_t (line 18) | class io_thread_t
    class session_base_t (line 19) | class session_base_t
    class pgm_sender_t (line 21) | class pgm_sender_t
    function has_handshake_stage (line 30) | bool has_handshake_stage () { return false; }
    function zap_msg_available (line 35) | void zap_msg_available () {}

FILE: src/pgm_socket.cpp
  type pgm_addrinfo_t (line 44) | struct pgm_addrinfo_t
  type pgm_addrinfo_t (line 65) | struct pgm_addrinfo_t
  type pgm_addrinfo_t (line 102) | struct pgm_addrinfo_t
  type pgm_sockaddr_t (line 234) | struct pgm_sockaddr_t
  type pgm_interface_req_t (line 249) | struct pgm_interface_req_t
  type sockaddr_in6 (line 254) | struct sockaddr_in6
  type group_req (line 278) | struct group_req
  type group_req (line 282) | struct group_req
  type timeval (line 460) | struct timeval
  type timeval (line 479) | struct timeval
  type pgm_sk_buff_t (line 573) | struct pgm_sk_buff_t
  type pgm_sk_buff_t (line 596) | struct pgm_sk_buff_t

FILE: src/pgm_socket.hpp
  type zmq (line 21) | namespace zmq
    class pgm_socket_t (line 24) | class pgm_socket_t
      type pgm_addrinfo_t (line 38) | struct pgm_addrinfo_t

FILE: src/pipe.hpp
  type zmq (line 16) | namespace zmq
    class pipe_t (line 18) | class pipe_t
    type i_pipe_events (line 33) | struct i_pipe_events
    class pipe_t (line 47) | class pipe_t

FILE: src/plain_client.hpp
  type zmq (line 9) | namespace zmq
    class msg_t (line 11) | class msg_t
    function mechanism_base_t (line 13) | class plain_client_t ZMQ_FINAL : public mechanism_base_t

FILE: src/plain_common.hpp
  type zmq (line 6) | namespace zmq

FILE: src/plain_server.hpp
  type zmq (line 9) | namespace zmq
    class msg_t (line 11) | class msg_t
    class session_base_t (line 12) | class session_base_t
    function zap_client_common_handshake_t (line 14) | class plain_server_t ZMQ_FINAL : public zap_client_common_handshake_t

FILE: src/poll.hpp
  type zmq (line 25) | namespace zmq
    type i_poll_events (line 27) | struct i_poll_events
    function worker_poller_base_t (line 32) | class poll_t ZMQ_FINAL : public worker_poller_base_t

FILE: src/poller_base.hpp
  type zmq (line 12) | namespace zmq
    type i_poll_events (line 14) | struct i_poll_events
    class poller_base_t (line 95) | class poller_base_t
      type timer_info_t (line 119) | struct timer_info_t
    class worker_poller_base_t (line 135) | class worker_poller_base_t : public poller_base_t

FILE: src/polling_util.hpp
  function fast_vector_t (line 25) | explicit fast_vector_t (const size_t nitems_)
  function T (line 36) | T &operator[] (const size_t i) { return _buf[i]; }
  class resizable_fast_vector_t (line 51) | class resizable_fast_vector_t
    method resizable_fast_vector_t (line 54) | resizable_fast_vector_t () : _dynamic_buf (NULL) {}
    method resize (line 56) | void resize (const size_t nitems_)
    method T (line 68) | T *get_buf ()
    method T (line 74) | T &operator[] (const size_t i) { return get_buf ()[i]; }
    method valid_pollset_bytes (line 94) | inline size_t valid_pollset_bytes (const fd_set &pollset_)
    method valid_pollset_bytes (line 105) | inline size_t valid_pollset_bytes (const fd_set & /*pollset_*/)
    class optimized_fd_set_t (line 119) | class optimized_fd_set_t
      method optimized_fd_set_t (line 122) | explicit optimized_fd_set_t (size_t nevents_) : _fd_set (1 + nevents...
      method fd_set (line 124) | fd_set *get () { return reinterpret_cast<fd_set *> (&_fd_set[0]); }
      method optimized_fd_set_t (line 144) | explicit optimized_fd_set_t (size_t /*nevents_*/) {}
      method fd_set (line 146) | fd_set *get () { return &_fd_set; }
    class resizable_optimized_fd_set_t (line 130) | class resizable_optimized_fd_set_t
      method resize (line 133) | void resize (size_t nevents_) { _fd_set.resize (1 + nevents_); }
      method fd_set (line 135) | fd_set *get () { return reinterpret_cast<fd_set *> (&_fd_set[0]); }
      method resizable_optimized_fd_set_t (line 155) | resizable_optimized_fd_set_t () : optimized_fd_set_t (0) {}
      method resize (line 157) | void resize (size_t /*nevents_*/) {}
    class optimized_fd_set_t (line 141) | class optimized_fd_set_t
      method optimized_fd_set_t (line 122) | explicit optimized_fd_set_t (size_t nevents_) : _fd_set (1 + nevents...
      method fd_set (line 124) | fd_set *get () { return reinterpret_cast<fd_set *> (&_fd_set[0]); }
      method optimized_fd_set_t (line 144) | explicit optimized_fd_set_t (size_t /*nevents_*/) {}
      method fd_set (line 146) | fd_set *get () { return &_fd_set; }
    class resizable_optimized_fd_set_t (line 152) | class resizable_optimized_fd_set_t : public optimized_fd_set_t
      method resize (line 133) | void resize (size_t nevents_) { _fd_set.resize (1 + nevents_); }
      method fd_set (line 135) | fd_set *get () { return reinterpret_cast<fd_set *> (&_fd_set[0]); }
      method resizable_optimized_fd_set_t (line 155) | resizable_optimized_fd_set_t () : optimized_fd_set_t (0) {}
      method resize (line 157) | void resize (size_t /*nevents_*/) {}

FILE: src/pollset.cpp
  type poll_ctl (line 46) | struct poll_ctl
  type poll_ctl (line 68) | struct poll_ctl
  type poll_ctl (line 87) | struct poll_ctl
  type poll_ctl (line 106) | struct poll_ctl
  type poll_ctl (line 127) | struct poll_ctl
  type poll_ctl (line 146) | struct poll_ctl
  type pollfd (line 180) | struct pollfd

FILE: src/pollset.hpp
  type zmq (line 19) | namespace zmq
    type i_poll_events (line 21) | struct i_poll_events
    function poller_base_t (line 26) | class pollset_t ZMQ_FINAL : public poller_base_t

FILE: src/proxy.cpp
  class socket_base_t (line 21) | class socket_base_t
  class socket_base_t (line 22) | class socket_base_t
  class socket_base_t (line 23) | class socket_base_t
  function capture (line 57) | static int
  type stats_socket (line 76) | struct stats_socket
  type stats_endpoint (line 80) | struct stats_endpoint
  type stats_proxy (line 84) | struct stats_proxy
  function forward (line 89) | static int forward (class zmq::socket_base_t *from_,
  type proxy_state_t (line 139) | enum proxy_state_t
  function handle_control (line 148) | static int handle_control (class zmq::socket_base_t *control_,
  class socket_base_t (line 215) | class socket_base_t
  class socket_base_t (line 216) | class socket_base_t
  class socket_base_t (line 217) | class socket_base_t
  class socket_base_t (line 218) | class socket_base_t
  class socket_base_t (line 486) | class socket_base_t
  class socket_base_t (line 487) | class socket_base_t
  class socket_base_t (line 488) | class socket_base_t
  class socket_base_t (line 489) | class socket_base_t

FILE: src/proxy.hpp
  type zmq (line 6) | namespace zmq
    class socket_base_t (line 8) | class socket_base_t
    class socket_base_t (line 9) | class socket_base_t
    class socket_base_t (line 10) | class socket_base_t
    class socket_base_t (line 12) | class socket_base_t
    class socket_base_t (line 13) | class socket_base_t
    class socket_base_t (line 14) | class socket_base_t
    class socket_base_t (line 15) | class socket_base_t

FILE: src/pub.cpp
  class ctx_t (line 9) | class ctx_t
  class msg_t (line 32) | class msg_t

FILE: src/pub.hpp
  type zmq (line 8) | namespace zmq
    class ctx_t (line 10) | class ctx_t
    class io_thread_t (line 11) | class io_thread_t
    class socket_base_t (line 12) | class socket_base_t
    class msg_t (line 13) | class msg_t
    function ZMQ_FINAL (line 15) | class pub_t ZMQ_FINAL : public xpub_t

FILE: src/pull.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/pull.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class pipe_t (line 13) | class pipe_t
    class msg_t (line 14) | class msg_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class pull_t ZMQ_FINAL : public socket_base_t

FILE: src/push.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/push.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class pipe_t (line 13) | class pipe_t
    class msg_t (line 14) | class msg_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class push_t ZMQ_FINAL : public socket_base_t

FILE: src/radio.cpp
  class ctx_t (line 12) | class ctx_t

FILE: src/radio.hpp
  class ctx_t (line 17) | class ctx_t
  class pipe_t (line 18) | class pipe_t
  class io_thread_t (line 19) | class io_thread_t
  class radio_t (line 21) | class radio_t
  function session_base_t (line 58) | class radio_session_t ZMQ_FINAL : public session_base_t

FILE: src/radix_tree.cpp
  function node_t (line 95) | node_t node_t::node_at (size_t index_)
  function node_t (line 141) | node_t make_node (size_t refcount_, size_t prefix_length_, size_t edgeco...
  function free_nodes (line 162) | static void free_nodes (node_t node_)
  function match_result_t (line 191) | match_result_t zmq::radix_tree_t::match (const unsigned char *key_,
  function visit_keys (line 515) | static void

FILE: src/radix_tree.hpp
  type node_t (line 37) | struct node_t
  type match_result_t (line 68) | struct match_result_t
  type zmq (line 87) | namespace zmq
    class radix_tree_t (line 89) | class radix_tree_t

FILE: src/random.cpp
  function manage_random (line 39) | static void manage_random (bool init_)

FILE: src/random.hpp
  type zmq (line 8) | namespace zmq

FILE: src/raw_decoder.hpp
  type zmq (line 11) | namespace zmq
    function ZMQ_FINAL (line 15) | class raw_decoder_t ZMQ_FINAL : public i_decoder

FILE: src/raw_encoder.hpp
  type zmq (line 12) | namespace zmq
    class raw_encoder_t (line 16) | class raw_encoder_t

FILE: src/raw_engine.hpp
  type zmq (line 19) | namespace zmq
    class io_thread_t (line 23) | class io_thread_t
    class session_base_t (line 24) | class session_base_t
    class mechanism_t (line 25) | class mechanism_t
    function stream_engine_base_t (line 30) | class raw_engine_t ZMQ_FINAL : public stream_engine_base_t

FILE: src/reaper.cpp
  class ctx_t (line 9) | class ctx_t

FILE: src/reaper.hpp
  type zmq (line 11) | namespace zmq
    class ctx_t (line 13) | class ctx_t
    class socket_base_t (line 14) | class socket_base_t
    class reaper_t (line 16) | class reaper_t

FILE: src/rep.cpp
  class ctx_t (line 8) | class ctx_t

FILE: src/rep.hpp
  type zmq (line 8) | namespace zmq
    class ctx_t (line 10) | class ctx_t
    class msg_t (line 11) | class msg_t
    class io_thread_t (line 12) | class io_thread_t
    class socket_base_t (line 13) | class socket_base_t
    function ZMQ_FINAL (line 15) | class rep_t ZMQ_FINAL : public router_t

FILE: src/req.cpp
  class ctx_t (line 12) | class ctx_t

FILE: src/req.hpp
  class ctx_t (line 11) | class ctx_t
  class msg_t (line 12) | class msg_t
  class io_thread_t (line 13) | class io_thread_t
  class socket_base_t (line 14) | class socket_base_t
  class req_t (line 16) | class req_t
  function session_base_t (line 62) | class req_session_t ZMQ_FINAL : public session_base_t

FILE: src/router.cpp
  class ctx_t (line 12) | class ctx_t
  function check_pipe_hwm (line 387) | static bool check_pipe_hwm (const zmq::pipe_t &pipe_)

FILE: src/router.hpp
  type zmq (line 15) | namespace zmq
    class ctx_t (line 17) | class ctx_t
    class pipe_t (line 18) | class pipe_t
    class router_t (line 21) | class router_t : public routing_socket_base_t

FILE: src/scatter.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/scatter.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class pipe_t (line 13) | class pipe_t
    class msg_t (line 14) | class msg_t
    class io_thread_t (line 15) | class io_thread_t
    function socket_base_t (line 17) | class scatter_t ZMQ_FINAL : public socket_base_t

FILE: src/secure_allocator.hpp
  type zmq (line 17) | namespace zmq
    type secure_allocator_t (line 20) | struct secure_allocator_t
      method secure_allocator_t (line 27) | secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
      method T (line 30) | T *allocate (std::size_t n) ZMQ_NOEXCEPT
      method deallocate (line 36) | void deallocate (T *p, std::size_t) ZMQ_NOEXCEPT
      type rebind (line 50) | struct rebind
      method construct (line 55) | void construct (pointer p, const_reference val)
      method destroy (line 59) | void destroy (pointer p) { p->~value_type (); }
      method size_type (line 60) | size_type max_size () const { return SIZE_MAX; }
      method secure_allocator_t (line 78) | secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
      type rebind (line 82) | struct rebind
    type secure_allocator_t (line 73) | struct secure_allocator_t : std::allocator<T>
      method secure_allocator_t (line 27) | secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
      method T (line 30) | T *allocate (std::size_t n) ZMQ_NOEXCEPT
      method deallocate (line 36) | void deallocate (T *p, std::size_t) ZMQ_NOEXCEPT
      type rebind (line 50) | struct rebind
      method construct (line 55) | void construct (pointer p, const_reference val)
      method destroy (line 59) | void destroy (pointer p) { p->~value_type (); }
      method size_type (line 60) | size_type max_size () const { return SIZE_MAX; }
      method secure_allocator_t (line 78) | secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
      type rebind (line 82) | struct rebind

FILE: src/select.cpp
  type timeval (line 300) | struct timeval
  type timeval (line 302) | struct timeval
  type timeval (line 383) | struct timeval
  type timeval (line 398) | struct timeval
  function u_short (line 523) | u_short zmq::select_t::get_fd_family (fd_t fd_)
  function u_short (line 550) | u_short zmq::select_t::determine_fd_family (fd_t fd_)

FILE: src/select.hpp
  type zmq (line 26) | namespace zmq
    type i_poll_events (line 28) | struct i_poll_events
    function worker_poller_base_t (line 33) | class select_t ZMQ_FINAL : public worker_poller_base_t

FILE: src/server.cpp
  class ctx_t (line 12) | class ctx_t

FILE: src/server.hpp
  type zmq (line 14) | namespace zmq
    class ctx_t (line 16) | class ctx_t
    class msg_t (line 17) | class msg_t
    class pipe_t (line 18) | class pipe_t
    class server_t (line 21) | class server_t : public socket_base_t
      type outpipe_t (line 44) | struct outpipe_t

FILE: src/session_base.cpp
  class io_thread_t (line 28) | class io_thread_t
  class socket_base_t (line 30) | class socket_base_t
  class io_thread_t (line 89) | class io_thread_t
  class socket_base_t (line 91) | class socket_base_t

FILE: src/session_base.hpp
  type zmq (line 15) | namespace zmq
    class io_thread_t (line 17) | class io_thread_t
    type i_engine (line 18) | struct i_engine
    type address_t (line 19) | struct address_t
    class session_base_t (line 21) | class session_base_t : public own_t, public io_object_t, public i_pipe...
      class hello_msg_session_t (line 150) | class hello_msg_session_t

FILE: src/signaler.cpp
  function sleep_ms (line 49) | static int sleep_ms (unsigned int ms_)
  function close_wait_ms (line 70) | static int close_wait_ms (int fd_, unsigned int max_ms_ = 2000)
  type linger (line 114) | struct linger
  type pollfd (line 216) | struct pollfd
  type timeval (line 246) | struct timeval

FILE: src/signaler.hpp
  type zmq (line 13) | namespace zmq
    class signaler_t (line 20) | class signaler_t

FILE: src/socket_base.cpp
  class ctx_t (line 142) | class ctx_t
  type pgm_addrinfo_t (line 1046) | struct pgm_addrinfo_t
  class ctx_t (line 2114) | class ctx_t

FILE: src/socket_base.hpp
  type zmq (line 25) | namespace zmq
    class ctx_t (line 27) | class ctx_t
    class msg_t (line 28) | class msg_t
    class pipe_t (line 29) | class pipe_t
    class socket_base_t (line 31) | class socket_base_t : public own_t,
      class inprocs_t (line 226) | class inprocs_t
    class routing_socket_base_t (line 339) | class routing_socket_base_t : public socket_base_t
      class ctx_t (line 342) | class ctx_t
      type out_pipe_t (line 355) | struct out_pipe_t
      method any_of_out_pipes (line 367) | bool any_of_out_pipes (Func func_)

FILE: src/socket_poller.cpp
  function is_thread_safe (line 11) | static bool is_thread_safe (const zmq::socket_base_t &socket_)
  function It (line 19) | static It find_if2 (It b_, It e_, const T &value, Pred pred)
  type timespec (line 528) | struct timespec

FILE: src/socket_poller.hpp
  type zmq (line 28) | namespace zmq
    class socket_poller_t (line 30) | class socket_poller_t
      method size (line 50) | int size () const { return static_cast<int> (_items.size ()); }
      type item_t (line 56) | struct item_t
      method is_socket (line 84) | static bool is_socket (const item_t &item, const socket_base_t *sock...
      method is_fd (line 88) | static bool is_fd (const item_t &item, fd_t fd_)

FILE: src/socks.cpp
  type sockaddr_in (line 228) | struct sockaddr_in
  type sockaddr_in (line 229) | struct sockaddr_in
  type sockaddr_in6 (line 234) | struct sockaddr_in6
  type sockaddr_in6 (line 235) | struct sockaddr_in6

FILE: src/socks.hpp
  type zmq (line 10) | namespace zmq
    type socks_greeting_t (line 12) | struct socks_greeting_t
    class socks_greeting_encoder_t (line 21) | class socks_greeting_encoder_t
    type socks_choice_t (line 36) | struct socks_choice_t
    class socks_choice_decoder_t (line 43) | class socks_choice_decoder_t
    type socks_basic_auth_request_t (line 58) | struct socks_basic_auth_request_t
    class socks_basic_auth_request_encoder_t (line 67) | class socks_basic_auth_request_encoder_t
    type socks_auth_response_t (line 82) | struct socks_auth_response_t
    class socks_auth_response_decoder_t (line 88) | class socks_auth_response_decoder_t
    type socks_request_t (line 102) | struct socks_request_t
    class socks_request_encoder_t (line 111) | class socks_request_encoder_t
    type socks_response_t (line 126) | struct socks_response_t
    class socks_response_decoder_t (line 136) | class socks_response_decoder_t

FILE: src/socks_connecter.cpp
  class io_thread_t (line 27) | class io_thread_t
  class session_base_t (line 28) | class session_base_t

FILE: src/socks_connecter.hpp
  type zmq (line 11) | namespace zmq
    class io_thread_t (line 13) | class io_thread_t
    class session_base_t (line 14) | class session_base_t
    type address_t (line 15) | struct address_t
    function stream_connecter_base_t (line 17) | class socks_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/stream.cpp
  class ctx_t (line 12) | class ctx_t

FILE: src/stream.hpp
  type zmq (line 10) | namespace zmq
    class ctx_t (line 12) | class ctx_t
    class pipe_t (line 13) | class pipe_t
    function routing_socket_base_t (line 15) | class stream_t ZMQ_FINAL : public routing_socket_base_t

FILE: src/stream_connecter_base.hpp
  type zmq (line 10) | namespace zmq
    class io_thread_t (line 12) | class io_thread_t
    class session_base_t (line 13) | class session_base_t
    type address_t (line 14) | struct address_t
    class stream_connecter_base_t (line 16) | class stream_connecter_base_t : public own_t, public io_object_t

FILE: src/stream_engine_base.cpp
  function get_peer_address (line 39) | static std::string get_peer_address (zmq::fd_t s_)

FILE: src/stream_engine_base.hpp
  type zmq (line 19) | namespace zmq
    class io_thread_t (line 21) | class io_thread_t
    class session_base_t (line 22) | class session_base_t
    class mechanism_t (line 23) | class mechanism_t
    class stream_engine_base_t (line 28) | class stream_engine_base_t : public io_object_t, public i_engine
      method has_handshake_stage (line 38) | bool has_handshake_stage () ZMQ_FINAL { return _has_handshake_stage; }
      method handshake (line 71) | virtual bool handshake () { return true; }
      method process_command_message (line 74) | virtual int process_command_message (msg_t *msg_)
      method produce_ping_message (line 79) | virtual int produce_ping_message (msg_t *msg_)
      method process_heartbeat_message (line 84) | virtual int process_heartbeat_message (msg_t *msg_)
      method produce_pong_message (line 89) | virtual int produce_pong_message (msg_t *msg_)
      method reset_pollout (line 98) | void reset_pollout () { io_object_t::reset_pollout (_handle); }
      method set_pollout (line 99) | void set_pollout () { io_object_t::set_pollout (_handle); }
      method set_pollin (line 100) | void set_pollin () { io_object_t::set_pollin (_handle); }
      method session_base_t (line 101) | session_base_t *session () { return _session; }
      method socket_base_t (line 102) | socket_base_t *socket () { return _socket; }

FILE: src/stream_listener_base.hpp
  type zmq (line 14) | namespace zmq
    class io_thread_t (line 16) | class io_thread_t
    class socket_base_t (line 17) | class socket_base_t
    class stream_listener_base_t (line 19) | class stream_listener_base_t : public own_t, public io_object_t

FILE: src/sub.cpp
  class ctx_t (line 7) | class ctx_t

FILE: src/sub.hpp
  type zmq (line 8) | namespace zmq
    class ctx_t (line 10) | class ctx_t
    class msg_t (line 11) | class msg_t
    class io_thread_t (line 12) | class io_thread_t
    class socket_base_t (line 13) | class socket_base_t
    function ZMQ_FINAL (line 15) | class sub_t ZMQ_FINAL : public xsub_t

FILE: src/tcp.hpp
  type zmq (line 8) | namespace zmq
    class tcp_address_t (line 10) | class tcp_address_t
    type options_t (line 11) | struct options_t

FILE: src/tcp_address.cpp
  function make_address_string (line 89) | static std::string make_address_string (const char *hbuf_,
  function sockaddr (line 142) | const sockaddr *zmq::tcp_address_t::addr () const
  function socklen_t (line 147) | socklen_t zmq::tcp_address_t::addrlen () const
  function sockaddr (line 152) | const sockaddr *zmq::tcp_address_t::src_addr () const
  function socklen_t (line 157) | socklen_t zmq::tcp_address_t::src_addrlen () const
  function sa_family_t (line 170) | sa_family_t zmq::tcp_address_t::family () const
  type sockaddr (line 237) | struct sockaddr
  type sockaddr (line 242) | struct sockaddr
  type sockaddr_in6 (line 251) | struct sockaddr_in6
  type sockaddr_in6 (line 253) | struct sockaddr_in6
  type in6_addr (line 257) | struct in6_addr
  type sockaddr_in (line 259) | struct sockaddr_in
  type sockaddr_in (line 261) | struct sockaddr_in
  type in_addr (line 264) | struct in_addr

FILE: src/tcp_address.hpp
  type zmq (line 13) | namespace zmq
    class tcp_address_t (line 15) | class tcp_address_t
    class tcp_address_mask_t (line 48) | class tcp_address_mask_t
      type sockaddr (line 58) | struct sockaddr

FILE: src/tcp_connecter.cpp
  class io_thread_t (line 38) | class io_thread_t
  class session_base_t (line 39) | class session_base_t

FILE: src/tcp_connecter.hpp
  type zmq (line 10) | namespace zmq
    function stream_connecter_base_t (line 12) | class tcp_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/tcp_listener.cpp
  type sockaddr_storage (line 170) | struct sockaddr_storage
  type sockaddr (line 178) | struct sockaddr
  type sockaddr (line 182) | struct sockaddr
  type sockaddr (line 213) | struct sockaddr

FILE: src/tcp_listener.hpp
  type zmq (line 10) | namespace zmq
    function stream_listener_base_t (line 12) | class tcp_listener_t ZMQ_FINAL : public stream_listener_base_t

FILE: src/thread.cpp
  type thread_info_t (line 96) | struct thread_info_t
  type sched_param (line 272) | struct sched_param

FILE: src/thread.hpp
  type zmq (line 15) | namespace zmq
    class thread_t (line 26) | class thread_t
      method thread_t (line 29) | thread_t () :

FILE: src/timers.cpp
  type zmq::timers_t::match_by_id (line 38) | struct zmq::timers_t::match_by_id
    method match_by_id (line 40) | match_by_id (int timer_id_) : _timer_id (timer_id_) {}

FILE: src/timers.hpp
  type zmq (line 12) | namespace zmq
    class timers_t (line 16) | class timers_t
      type timer_t (line 61) | struct timer_t
      type match_by_id (line 75) | struct match_by_id

FILE: src/tipc_address.cpp
  function sockaddr (line 133) | const sockaddr *zmq::tipc_address_t::addr () const
  function socklen_t (line 138) | socklen_t zmq::tipc_address_t::addrlen () const

FILE: src/tipc_address.hpp
  type zmq (line 19) | namespace zmq
    class tipc_address_t (line 21) | class tipc_address_t
      type sockaddr_tipc (line 43) | struct sockaddr_tipc

FILE: src/tipc_connecter.cpp
  class io_thread_t (line 28) | class io_thread_t
  class session_base_t (line 29) | class session_base_t

FILE: src/tipc_connecter.hpp
  type zmq (line 13) | namespace zmq
    function stream_connecter_base_t (line 15) | class tipc_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/tipc_listener.cpp
  type sockaddr_storage (line 83) | struct sockaddr_storage
  type sockaddr (line 89) | struct sockaddr
  type sockaddr_storage (line 127) | struct sockaddr_storage
  type sockaddr (line 132) | struct sockaddr
  type sockaddr (line 135) | struct sockaddr

FILE: src/tipc_listener.hpp
  type zmq (line 16) | namespace zmq
    function stream_listener_base_t (line 18) | class tipc_listener_t ZMQ_FINAL : public stream_listener_base_t

FILE: src/trie.hpp
  class trie_t (line 14) | class trie_t
    class trie_t (line 51) | class trie_t
    class trie_t (line 52) | class trie_t
    class trie_with_size_t (line 60) | class trie_with_size_t
      method trie_with_size_t (line 63) | trie_with_size_t () {}
      method add (line 66) | bool add (unsigned char *prefix_, size_t size_)
      method rm (line 75) | bool rm (unsigned char *prefix_, size_t size_)
      method check (line 84) | bool check (const unsigned char *data_, size_t size_) const
      method apply (line 89) | void apply (void (*func_) (unsigned char *data_, size_t size_, void ...
      method num_prefixes (line 97) | uint32_t num_prefixes () const { return _num_prefixes.get (); }

FILE: src/udp_address.hpp
  type zmq (line 15) | namespace zmq
    class udp_address_t (line 17) | class udp_address_t

FILE: src/udp_engine.cpp
  type in_addr (line 252) | struct in_addr
  type ip_mreq (line 293) | struct ip_mreq
  type ipv6_mreq (line 301) | struct ipv6_mreq

FILE: src/udp_engine.hpp
  type zmq (line 12) | namespace zmq
    class io_thread_t (line 14) | class io_thread_t
    class session_base_t (line 15) | class session_base_t
    class udp_engine_t (line 17) | class udp_engine_t
    function has_handshake_stage (line 25) | bool has_handshake_stage () ZMQ_FINAL { return false; }
    class session_base_t (line 29) | class session_base_t
    type sockaddr (line 82) | struct sockaddr

FILE: src/v1_decoder.hpp
  type zmq (line 8) | namespace zmq
    class v1_decoder_t (line 12) | class v1_decoder_t
    function msg_t (line 18) | msg_t *msg () { return &_in_progress; }

FILE: src/v1_encoder.hpp
  type zmq (line 8) | namespace zmq
    class v1_encoder_t (line 12) | class v1_encoder_t

FILE: src/v2_decoder.hpp
  type zmq (line 9) | namespace zmq
    class v2_decoder_t (line 14) | class v2_decoder_t
    function msg_t (line 22) | msg_t *msg () { return &_in_progress; }

FILE: src/v2_encoder.hpp
  type zmq (line 8) | namespace zmq
    class v2_encoder_t (line 12) | class v2_encoder_t

FILE: src/v2_protocol.hpp
  type zmq (line 6) | namespace zmq
    class v2_protocol_t (line 9) | class v2_protocol_t

FILE: src/v3_1_encoder.hpp
  type zmq (line 9) | namespace zmq
    class v3_1_encoder_t (line 13) | class v3_1_encoder_t

FILE: src/vmci.cpp
  type timeval (line 60) | struct timeval

FILE: src/vmci.hpp
  type zmq (line 20) | namespace zmq
    type timeval (line 33) | struct timeval

FILE: src/vmci_address.cpp
  function sockaddr (line 131) | const sockaddr *zmq::vmci_address_t::addr () const
  function socklen_t (line 136) | socklen_t zmq::vmci_address_t::addrlen () const

FILE: src/vmci_address.hpp
  type zmq (line 14) | namespace zmq
    class vmci_address_t (line 16) | class vmci_address_t
      type sockaddr_vm (line 38) | struct sockaddr_vm

FILE: src/vmci_connecter.cpp
  class io_thread_t (line 21) | class io_thread_t
  class session_base_t (line 22) | class session_base_t
  type timeval (line 95) | struct timeval
  type sockaddr_storage (line 108) | struct sockaddr_storage
  type sockaddr (line 114) | struct sockaddr

FILE: src/vmci_connecter.hpp
  type zmq (line 16) | namespace zmq
    class io_thread_t (line 18) | class io_thread_t
    class session_base_t (line 19) | class session_base_t
    type address_t (line 20) | struct address_t
    function stream_connecter_base_t (line 22) | class vmci_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/vmci_listener.cpp
  type timeval (line 55) | struct timeval
  type sockaddr_storage (line 68) | struct sockaddr_storage
  type sockaddr (line 74) | struct sockaddr

FILE: src/vmci_listener.hpp
  type zmq (line 16) | namespace zmq
    function stream_listener_base_t (line 18) | class vmci_listener_t ZMQ_FINAL : public stream_listener_base_t

FILE: src/vsock_address.cpp
  function sockaddr (line 129) | const sockaddr *zmq::vsock_address_t::addr () const
  function socklen_t (line 134) | socklen_t zmq::vsock_address_t::addrlen () const
  function sa_family_t (line 139) | sa_family_t zmq::vsock_address_t::family () const

FILE: src/vsock_address.hpp
  type zmq (line 15) | namespace zmq
    class vsock_address_t (line 17) | class vsock_address_t
      type sockaddr_vm (line 35) | struct sockaddr_vm

FILE: src/vsock_connecter.cpp
  class io_thread_t (line 22) | class io_thread_t
  class session_base_t (line 23) | class session_base_t
  type sockaddr_storage (line 95) | struct sockaddr_storage
  type sockaddr (line 101) | struct sockaddr

FILE: src/vsock_connecter.hpp
  type zmq (line 15) | namespace zmq
    class io_thread_t (line 17) | class io_thread_t
    class session_base_t (line 18) | class session_base_t
    type address_t (line 19) | struct address_t
    function stream_connecter_base_t (line 21) | class vsock_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/vsock_listener.cpp
  type sockaddr_storage (line 50) | struct sockaddr_storage
  type sockaddr (line 56) | struct sockaddr

FILE: src/vsock_listener.hpp
  type zmq (line 16) | namespace zmq
    function stream_listener_base_t (line 18) | class vsock_listener_t ZMQ_FINAL : public stream_listener_base_t

FILE: src/windows.hpp
  type tcp_keepalive (line 42) | struct tcp_keepalive
  function poll (line 58) | static inline int poll (struct pollfd *pfd, unsigned long nfds, int time...
  function utf8_to_utf16 (line 70) | static inline std::wstring utf8_to_utf16 (const char *utf8_string)
  function unlink_utf8 (line 96) | static inline int unlink_utf8 (const char *filename)
  function rmdir_utf8 (line 101) | static inline int rmdir_utf8 (const char *filename)
  type sockaddr_un (line 116) | struct sockaddr_un

FILE: src/wire.hpp
  type zmq (line 8) | namespace zmq
    function put_uint8 (line 13) | inline void put_uint8 (unsigned char *buffer_, uint8_t value_)
    function get_uint8 (line 18) | inline uint8_t get_uint8 (const unsigned char *buffer_)
    function put_uint16 (line 23) | inline void put_uint16 (unsigned char *buffer_, uint16_t value_)
    function get_uint16 (line 29) | inline uint16_t get_uint16 (const unsigned char *buffer_)
    function put_uint32 (line 35) | inline void put_uint32 (unsigned char *buffer_, uint32_t value_)
    function get_uint32 (line 43) | inline uint32_t get_uint32 (const unsigned char *buffer_)
    function put_uint64 (line 51) | inline void put_uint64 (unsigned char *buffer_, uint64_t value_)
    function get_uint64 (line 63) | inline uint64_t get_uint64 (const unsigned char *buffer_)

FILE: src/ws_address.cpp
  function sockaddr (line 112) | const sockaddr *zmq::ws_address_t::addr () const
  function socklen_t (line 117) | socklen_t zmq::ws_address_t::addrlen () const

FILE: src/ws_address.hpp
  type zmq (line 13) | namespace zmq
    class ws_address_t (line 15) | class ws_address_t

FILE: src/ws_connecter.cpp
  class io_thread_t (line 44) | class io_thread_t
  class session_base_t (line 45) | class session_base_t

FILE: src/ws_connecter.hpp
  type zmq (line 10) | namespace zmq
    function stream_connecter_base_t (line 12) | class ws_connecter_t ZMQ_FINAL : public stream_connecter_base_t

FILE: src/ws_decoder.hpp
  type zmq (line 10) | namespace zmq
    class ws_decoder_t (line 15) | class ws_decoder_t
    function msg_t (line 26) | msg_t *msg () { return &_in_progress; }

FILE: src/ws_encoder.hpp
  type zmq (line 8) | namespace zmq
    class ws_encoder_t (line 12) | class ws_encoder_t

FILE: src/ws_engine.cpp
  function encode_base64 (line 989) | static int
  function compute_accept_key (line 1028) | static void compute_accept_key (char *key_, unsigned char *hash_)

FILE: src/ws_engine.hpp
  type zmq (line 16) | namespace zmq
    class io_thread_t (line 18) | class io_thread_t
    class session_base_t (line 19) | class session_base_t
    class ws_engine_t (line 100) | class ws_engine_t : public stream_engine_base_t

FILE: src/ws_listener.cpp
  type sockaddr_storage (line 218) | struct sockaddr_storage
  type sockaddr (line 226) | struct sockaddr
  type sockaddr (line 230) | struct sockaddr

FILE: src/ws_listener.hpp
  type zmq (line 14) | namespace zmq
    function stream_listener_base_t (line 16) | class ws_listener_t ZMQ_FINAL : public stream_listener_base_t

FILE: src/ws_protocol.hpp
  type zmq (line 6) | namespace zmq
    class ws_protocol_t (line 9) | class ws_protocol_t
      type opcode_t (line 13) | enum opcode_t

FILE: src/wss_address.hpp
  type zmq (line 8) | namespace zmq
    class wss_address_t (line 10) | class wss_address_t : public ws_address_t

FILE: src/wss_engine.cpp
  function verify_certificate_callback (line 6) | static int verify_certificate_callback (gnutls_session_t session)

FILE: src/wss_engine.hpp
  type zmq (line 11) | namespace zmq
    class wss_engine_t (line 13) | class wss_engine_t : public ws_engine_t

FILE: src/xpub.cpp
  class ctx_t (line 13) | class ctx_t
  function stub (line 246) | static void stub (zmq::mtrie_t::prefix_t data_, size_t size_, void *arg_)

FILE: src/xpub.hpp
  type zmq (line 13) | namespace zmq
    class ctx_t (line 15) | class ctx_t
    class msg_t (line 16) | class msg_t
    class pipe_t (line 17) | class pipe_t
    class io_thread_t (line 18) | class io_thread_t
    class xpub_t (line 20) | class xpub_t : public socket_base_t

FILE: src/xsub.cpp
  class ctx_t (line 10) | class ctx_t

FILE: src/xsub.hpp
  type zmq (line 16) | namespace zmq
    class ctx_t (line 18) | class ctx_t
    class pipe_t (line 19) | class pipe_t
    class io_thread_t (line 20) | class io_thread_t
    class xsub_t (line 22) | class xsub_t : public socket_base_t

FILE: src/ypipe.hpp
  type zmq (line 10) | namespace zmq
    class ypipe_t (line 19) | class ypipe_t
    function write (line 47) | void write (const T &value_, bool incomplete_)
    function unwrite (line 64) | bool unwrite (T *value_)
    function flush (line 76) | bool flush ()
    function check_read (line 101) | bool check_read ()
    function read (line 126) | bool read (T *value_)
    function probe (line 142) | bool probe (bool (*fn_) (const T &))

FILE: src/ypipe_base.hpp
  type zmq (line 9) | namespace zmq
    class ypipe_base_t (line 15) | class ypipe_base_t

FILE: src/ypipe_conflate.hpp
  type zmq (line 10) | namespace zmq
    class ypipe_conflate_t (line 19) | class ypipe_conflate_t
    function write (line 33) | void write (const T &value_, bool incomplete_)
    function unwrite (line 45) | bool unwrite (T *) { return false; }
    function flush (line 51) | bool flush () { return reader_awake; }
    function check_read (line 54) | bool check_read ()
    function read (line 65) | bool read (T *value_)
    function probe (line 76) | bool probe (bool (*fn_) (const T &)) { return dbuffer.probe (fn_); }

FILE: src/yqueue.hpp
  class yqueue_t (line 34) | class yqueue_t
    method yqueue_t (line 41) | inline yqueue_t ()
    method T (line 71) | inline T &front () { return _begin_chunk->values[_begin_pos]; }
    method T (line 75) | inline T &back () { return _back_chunk->values[_back_pos]; }
    method push (line 78) | inline void push ()
    method unpush (line 106) | inline void unpush ()
    method pop (line 131) | inline void pop ()
    type chunk_t (line 149) | struct chunk_t
    method chunk_t (line 156) | static inline chunk_t *allocate_chunk ()
  class yqueue_t (line 36) | class yqueue_t
    method yqueue_t (line 41) | inline yqueue_t ()
    method T (line 71) | inline T &front () { return _begin_chunk->values[_begin_pos]; }
    method T (line 75) | inline T &back () { return _back_chunk->values[_back_pos]; }
    method push (line 78) | inline void push ()
    method unpush (line 106) | inline void unpush ()
    method pop (line 131) | inline void pop ()
    type chunk_t (line 149) | struct chunk_t
    method chunk_t (line 156) | static inline chunk_t *allocate_chunk ()

FILE: src/zap_client.cpp
  type zmq (line 9) | namespace zmq

FILE: src/zap_client.hpp
  type zmq (line 8) | namespace zmq
    class zap_client_t (line 10) | class zap_client_t : public virtual mechanism_base_t
    class zap_client_common_handshake_t (line 38) | class zap_client_common_handshake_t : public zap_client_t
      type state_t (line 41) | enum state_t

FILE: src/zmq.cpp
  type iovec (line 45) | struct iovec
  function zmq_version (line 88) | void zmq_version (int *major_, int *minor_, int *patch_)
  function zmq_errno (line 101) | int zmq_errno (void)
  function zmq_ctx_term (line 128) | int zmq_ctx_term (void *ctx_)
  function zmq_ctx_shutdown (line 147) | int zmq_ctx_shutdown (void *ctx_)
  function zmq_ctx_set (line 156) | int zmq_ctx_set (void *ctx_, int option_, int optval_)
  function zmq_ctx_set_ext (line 161) | int zmq_ctx_set_ext (void *ctx_,
  function zmq_ctx_get (line 174) | int zmq_ctx_get (void *ctx_, int option_)
  function zmq_ctx_get_ext (line 183) | int zmq_ctx_get_ext (void *ctx_, int option_, void *optval_, size_t *opt...
  function zmq_term (line 207) | int zmq_term (void *ctx_)
  function zmq_ctx_destroy (line 212) | int zmq_ctx_destroy (void *ctx_)
  function zmq_close (line 241) | int zmq_close (void *s_)
  function zmq_setsockopt (line 250) | int zmq_setsockopt (void *s_,
  function zmq_getsockopt (line 261) | int zmq_getsockopt (void *s_, int option_, void *optval_, size_t *optval...
  function zmq_socket_monitor_versioned (line 269) | int zmq_socket_monitor_versioned (
  function zmq_socket_monitor (line 278) | int zmq_socket_monitor (void *s_, const char *addr_, int events_)
  function zmq_join (line 283) | int zmq_join (void *s_, const char *group_)
  function zmq_leave (line 291) | int zmq_leave (void *s_, const char *group_)
  function zmq_bind (line 299) | int zmq_bind (void *s_, const char *addr_)
  function zmq_connect (line 307) | int zmq_connect (void *s_, const char *addr_)
  function zmq_connect_peer (line 315) | uint32_t zmq_connect_peer (void *s_, const char *addr_)
  function zmq_disconnect_peer (line 336) | int zmq_disconnect_peer (void *s_, uint32_t routing_id_)
  function zmq_unbind (line 345) | int zmq_unbind (void *s_, const char *addr_)
  function zmq_disconnect (line 353) | int zmq_disconnect (void *s_, const char *addr_)
  function s_sendmsg (line 363) | static inline int
  function zmq_sendmsg (line 380) | int zmq_sendmsg (void *s_, zmq_msg_t *msg_, int flags_)
  function zmq_send (line 385) | int zmq_send (void *s_, const void *buf_, size_t len_, int flags_)
  function zmq_send_const (line 408) | int zmq_send_const (void *s_, const void *buf_, size_t len_, int flags_)
  function zmq_sendiov (line 440) | int zmq_sendiov (void *s_, iovec *a_, size_t count_, int flags_)
  function s_recvmsg (line 477) | static int s_recvmsg (zmq::socket_base_t *s_, zmq_msg_t *msg_, int flags_)
  function zmq_recvmsg (line 489) | int zmq_recvmsg (void *s_, zmq_msg_t *msg_, int flags_)
  function zmq_recv (line 495) | int zmq_recv (void *s_, void *buf_, size_t len_, int flags_)
  function zmq_recviov (line 543) | int zmq_recviov (void *s_, iovec *a_, size_t *count_, int flags_)
  function zmq_msg_init (line 595) | int zmq_msg_init (zmq_msg_t *msg_)
  function zmq_msg_init_size (line 600) | int zmq_msg_init_size (zmq_msg_t *msg_, size_t size_)
  function zmq_msg_init_buffer (line 605) | int zmq_msg_init_buffer (zmq_msg_t *msg_, const void *buf_, size_t size_)
  function zmq_msg_init_data (line 610) | int zmq_msg_init_data (
  function zmq_msg_send (line 617) | int zmq_msg_send (zmq_msg_t *msg_, void *s_, int flags_)
  function zmq_msg_recv (line 625) | int zmq_msg_recv (zmq_msg_t *msg_, void *s_, int flags_)
  function zmq_msg_close (line 633) | int zmq_msg_close (zmq_msg_t *msg_)
  function zmq_msg_move (line 638) | int zmq_msg_move (zmq_msg_t *dest_, zmq_msg_t *src_)
  function zmq_msg_copy (line 644) | int zmq_msg_copy (zmq_msg_t *dest_, zmq_msg_t *src_)
  function zmq_msg_size (line 655) | size_t zmq_msg_size (const zmq_msg_t *msg_)
  function zmq_msg_more (line 660) | int zmq_msg_more (const zmq_msg_t *msg_)
  function zmq_msg_get (line 665) | int zmq_msg_get (const zmq_msg_t *msg_, int property_)
  function zmq_msg_set (line 689) | int zmq_msg_set (zmq_msg_t *, int, int)
  function zmq_msg_set_routing_id (line 696) | int zmq_msg_set_routing_id (zmq_msg_t *msg_, uint32_t routing_id_)
  function zmq_msg_routing_id (line 702) | uint32_t zmq_msg_routing_id (zmq_msg_t *msg_)
  function zmq_msg_set_group (line 707) | int zmq_msg_set_group (zmq_msg_t *msg_, const char *group_)
  function zmq_poller_poll (line 736) | static int zmq_poller_poll (zmq_pollitem_t *items_, int nitems_, long ti...
  function zmq_poll (line 835) | int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
  function zmq_poll_check_items_ (line 1139) | int zmq_poll_check_items_ (zmq_pollitem_t *items_, int nitems_, long tim...
  type zmq_poll_select_fds_t_ (line 1167) | struct zmq_poll_select_fds_t_
    method zmq_poll_select_fds_t_ (line 1169) | explicit zmq_poll_select_fds_t_ (int nitems_) :
  function zmq_poll_select_fds_t_ (line 1192) | zmq_poll_select_fds_t_
    method zmq_poll_select_fds_t_ (line 1169) | explicit zmq_poll_select_fds_t_ (int nitems_) :
  function timeval (line 1239) | timeval *zmq_poll_select_set_timeout_ (
  function timespec (line 1257) | timespec *zmq_poll_select_set_timeout_ (
  function zmq_poll_select_check_events_ (line 1275) | int zmq_poll_select_check_events_ (zmq_pollitem_t *items_,
  function zmq_poll_must_break_loop_ (line 1316) | bool zmq_poll_must_break_loop_ (long timeout_,
  function zmq_ppoll (line 1369) | int zmq_ppoll (zmq_pollitem_t *items_,
  function zmq_poller_destroy (line 1446) | int zmq_poller_destroy (void **poller_p_)
  function check_poller (line 1462) | static int check_poller (void *const poller_)
  function check_events (line 1473) | static int check_events (const short events_)
  function check_poller_registration_args (line 1482) | static int check_poller_registration_args (void *const poller_, void *co...
  function check_poller_fd_registration_args (line 1495) | static int check_poller_fd_registration_args (void *const poller_,
  function zmq_poller_size (line 1509) | int zmq_poller_size (void *poller_)
  function zmq_poller_add (line 1517) | int zmq_poller_add (void *poller_, void *s_, void *user_data_, short eve...
  function zmq_poller_add_fd (line 1529) | int zmq_poller_add_fd (void *poller_,
  function zmq_poller_modify (line 1543) | int zmq_poller_modify (void *poller_, void *s_, short events_)
  function zmq_poller_modify_fd (line 1556) | int zmq_poller_modify_fd (void *poller_, zmq::fd_t fd_, short events_)
  function zmq_poller_remove (line 1566) | int zmq_poller_remove (void *poller_, void *s_)
  function zmq_poller_remove_fd (line 1576) | int zmq_poller_remove_fd (void *poller_, zmq::fd_t fd_)
  function zmq_poller_wait (line 1584) | int zmq_poller_wait (void *poller_, zmq_poller_event_t *event_, long tim...
  function zmq_poller_wait_all (line 1598) | int zmq_poller_wait_all (void *poller_,
  function zmq_poller_fd (line 1623) | int zmq_poller_fd (void *poller_, zmq_fd_t *fd_)
  function zmq_socket_get_peer_state (line 1635) | int zmq_socket_get_peer_state (void *s_,
  function zmq_timers_destroy (line 1655) | int zmq_timers_destroy (void **timers_p_)
  function zmq_timers_add (line 1667) | int zmq_timers_add (void *timers_,
  function zmq_timers_cancel (line 1681) | int zmq_timers_cancel (void *timers_, int timer_id_)
  function zmq_timers_set_interval (line 1691) | int zmq_timers_set_interval (void *timers_, int timer_id_, size_t interv...
  function zmq_timers_reset (line 1702) | int zmq_timers_reset (void *timers_, int timer_id_)
  function zmq_timers_timeout (line 1712) | long zmq_timers_timeout (void *timers_)
  function zmq_timers_execute (line 1722) | int zmq_timers_execute (void *timers_)
  function zmq_proxy (line 1734) | int zmq_proxy (void *frontend_, void *backend_, void *capture_)
  function zmq_proxy_steerable (line 1746) | int zmq_proxy_steerable (void *frontend_,
  function zmq_device (line 1763) | int zmq_device (int /* type */, void *frontend_, void *backend_)
  function zmq_has (line 1771) | int zmq_has (const char *capability_)
  function zmq_socket_monitor_pipes_stats (line 1821) | int zmq_socket_monitor_pipes_stats (void *s_)

FILE: src/zmq_draft.h
  type SOCKET (line 109) | typedef SOCKET zmq_fd_t;
  type zmq_fd_t (line 111) | typedef int zmq_fd_t;
  type zmq_poller_event_t (line 114) | typedef struct zmq_poller_event_t

FILE: src/zmq_utils.cpp
  function zmq_sleep (line 23) | void zmq_sleep (int seconds_)
  function zmq_stopwatch_intermediate (line 40) | unsigned long zmq_stopwatch_intermediate (void *watch_)
  function zmq_stopwatch_stop (line 47) | unsigned long zmq_stopwatch_stop (void *watch_)
  function zmq_threadclose (line 62) | void zmq_threadclose (void *thread_)
  function zmq_curve_keypair (line 190) | int zmq_curve_keypair (char *z85_public_key_, char *z85_secret_key_)
  function zmq_curve_public (line 222) | int zmq_curve_public (char *z85_public_key_, const char *z85_secret_key_)
  function zmq_atomic_counter_set (line 264) | void zmq_atomic_counter_set (void *counter_, int value_)
  function zmq_atomic_counter_inc (line 271) | int zmq_atomic_counter_inc (void *counter_)
  function zmq_atomic_counter_dec (line 279) | int zmq_atomic_counter_dec (void *counter_)
  function zmq_atomic_counter_value (line 286) | int zmq_atomic_counter_value (void *counter_)
  function zmq_atomic_counter_destroy (line 293) | void zmq_atomic_counter_destroy (void **counter_p_)

FILE: src/zmtp_engine.hpp
  type zmq (line 19) | namespace zmq
    class io_thread_t (line 29) | class io_thread_t
    class session_base_t (line 30) | class session_base_t
    class mechanism_t (line 31) | class mechanism_t
    function stream_engine_base_t (line 36) | class zmtp_engine_t ZMQ_FINAL : public stream_engine_base_t

FILE: tests/test_abstract_ipc.cpp
  function test_roundtrip (line 13) | void test_roundtrip ()
  function test_empty_abstract_name (line 33) | void test_empty_abstract_name ()
  function main (line 41) | int main (void)

FILE: tests/test_address_tipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_tipc_port_identity (line 23) | void test_tipc_port_identity ()
  function test_tipc_bad_addresses (line 49) | void test_tipc_bad_addresses ()
  function main (line 65) | int main ()

FILE: tests/test_ancillaries.cpp
  function setUp (line 13) | void setUp ()
  function tearDown (line 17) | void tearDown ()
  function test_version (line 21) | void test_version ()
  function test_strerrror (line 31) | void test_strerrror ()
  function main (line 36) | int main ()

FILE: tests/test_app_meta.cpp
  function setUp (line 9) | void setUp ()
  function tearDown (line 12) | void tearDown ()
  function test_app_meta_reqrep (line 16) | void test_app_meta_reqrep ()
  function main (line 134) | int main ()

FILE: tests/test_atomics.cpp
  function setUp (line 8) | void setUp ()
  function tearDown (line 12) | void tearDown ()
  function test (line 16) | void test ()
  function main (line 33) | int main ()

FILE: tests/test_base85.cpp
  function setUp (line 6) | void setUp ()
  function tearDown (line 10) | void tearDown ()
  function test__zmq_z85_encode__valid__success (line 15) | void test__zmq_z85_encode__valid__success ()
  function test__zmq_z85_encode__invalid__failure (line 31) | void test__zmq_z85_encode__invalid__failure (size_t size_)
  function test__zmq_z85_decode__valid__success (line 39) | void test__zmq_z85_decode__valid__success ()
  function test__zmq_z85_decode__invalid__failure (line 55) | void test__zmq_z85_decode__invalid__failure (const char (&encoded_)[SIZE])
  function test__zmq_z85_encode__zmq_z85_decode__roundtrip (line 66) | void test__zmq_z85_encode__zmq_z85_decode__roundtrip (
  function test__zmq_z85_decode__zmq_z85_encode__roundtrip (line 83) | void test__zmq_z85_decode__zmq_z85_encode__roundtrip (
  function main (line 154) | int main ()

FILE: tests/test_bind_after_connect_tcp.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 29) | int main (void)

FILE: tests/test_bind_curve_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 14) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_bind_curve_fuzzer (line 94) | void test_bind_curve_fuzzer ()
  function main (line 114) | int main (int argc, char **argv)

FILE: tests/test_bind_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 17) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_bind_fuzzer (line 40) | void test_bind_fuzzer ()
  function main (line 60) | int main (int argc, char **argv)

FILE: tests/test_bind_null_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 12) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_bind_null_fuzzer (line 57) | void test_bind_null_fuzzer ()
  function main (line 77) | int main (int argc, char **argv)

FILE: tests/test_bind_src_address.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 22) | int main (void)

FILE: tests/test_bind_stream_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 12) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_bind_stream_fuzzer (line 76) | void test_bind_stream_fuzzer ()
  function main (line 96) | int main (int argc, char **argv)

FILE: tests/test_bind_ws_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 12) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_bind_ws_fuzzer (line 69) | void test_bind_ws_fuzzer ()
  function main (line 89) | int main (int argc, char **argv)

FILE: tests/test_busy_poll.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 25) | int main ()

FILE: tests/test_capabilities.cpp
  function setUp (line 6) | void setUp ()
  function tearDown (line 10) | void tearDown ()
  function test_capabilities (line 14) | void test_capabilities ()
  function main (line 71) | int main ()

FILE: tests/test_channel.cpp
  function setUp (line 11) | void setUp ()
  function tearDown (line 22) | void tearDown ()
  function test_roundtrip (line 30) | void test_roundtrip ()
  function test_sndmore_fails (line 39) | void test_sndmore_fails ()
  function main (line 46) | int main ()

FILE: tests/test_client_server.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function send_sndmore_expect_failure (line 19) | void send_sndmore_expect_failure (void *socket_)
  function test_client_sndmore_fails (line 26) | void test_client_sndmore_fails ()
  function test_server_sndmore_fails (line 37) | void test_server_sndmore_fails ()
  function test_routing_id (line 48) | void test_routing_id ()
  function main (line 99) | int main (void)

FILE: tests/test_conflate.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 42) | int main (int, char *[])

FILE: tests/test_connect_curve_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 13) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_connect_curve_fuzzer (line 83) | void test_connect_curve_fuzzer ()
  function main (line 103) | int main (int argc, char **argv)

FILE: tests/test_connect_delay_tipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 7) | SETUP_TEARDOWN_TESTCONTEXT
  function test_send_one_connected_one_unconnected_with_delay (line 72) | void test_send_one_connected_one_unconnected_with_delay ()
  function test_send_disconnected_with_delay (line 139) | void test_send_disconnected_with_delay ()
  function main (line 207) | int main (void)

FILE: tests/test_connect_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 13) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_connect_fuzzer (line 27) | void test_connect_fuzzer ()
  function main (line 47) | int main (int argc, char **argv)

FILE: tests/test_connect_null_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 12) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_connect_null_fuzzer (line 62) | void test_connect_null_fuzzer ()
  function main (line 82) | int main (int argc, char **argv)

FILE: tests/test_connect_resolve.cpp
  function setUp (line 11) | void setUp ()
  function tearDown (line 17) | void tearDown ()
  function test_hostname_ipv4 (line 24) | void test_hostname_ipv4 ()
  function test_loopback_ipv6 (line 29) | void test_loopback_ipv6 ()
  function test_invalid_service_fails (line 34) | void test_invalid_service_fails ()
  function test_hostname_with_spaces_fails (line 40) | void test_hostname_with_spaces_fails ()
  function test_no_hostname_fails (line 46) | void test_no_hostname_fails ()
  function test_x (line 52) | void test_x ()
  function test_invalid_proto_fails (line 58) | void test_invalid_proto_fails ()
  function main (line 65) | int main (void)

FILE: tests/test_connect_rid.cpp
  function test_stream_2_stream (line 15) | void test_stream_2_stream ()
  function test_router_2_router (line 64) | void test_router_2_router (bool named_)
  function test_router_2_router_while_receiving (line 131) | void test_router_2_router_while_receiving ()
  function test_router_2_router_unnamed (line 205) | void test_router_2_router_unnamed ()
  function test_router_2_router_named (line 210) | void test_router_2_router_named ()
  function main (line 215) | int main ()

FILE: tests/test_connect_stream_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 12) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_connect_null_fuzzer (line 61) | void test_connect_null_fuzzer ()
  function main (line 81) | int main (int argc, char **argv)

FILE: tests/test_connect_ws_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 12) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_connect_ws_fuzzer (line 69) | void test_connect_ws_fuzzer ()
  function main (line 89) | int main (int argc, char **argv)

FILE: tests/test_ctx_destroy.cpp
  function setUp (line 8) | void setUp ()
  function tearDown (line 12) | void tearDown ()
  function receiver (line 16) | static void receiver (void *socket_)
  function test_ctx_destroy (line 24) | void test_ctx_destroy ()
  function test_ctx_shutdown (line 40) | void test_ctx_shutdown ()
  function test_ctx_shutdown_socket_opened_after (line 68) | void test_ctx_shutdown_socket_opened_after ()
  function test_ctx_shutdown_only_socket_opened_after (line 90) | void test_ctx_shutdown_only_socket_opened_after ()
  function test_zmq_ctx_term_null_fails (line 107) | void test_zmq_ctx_term_null_fails ()
  function test_zmq_term_null_fails (line 114) | void test_zmq_term_null_fails ()
  function test_zmq_ctx_shutdown_null_fails (line 121) | void test_zmq_ctx_shutdown_null_fails ()
  type poller_test_data_t (line 129) | struct poller_test_data_t
  function run_poller (line 136) | void run_poller (void *data_)
  function test_poller_exists_with_socket_on_zmq_ctx_term (line 163) | void test_poller_exists_with_socket_on_zmq_ctx_term (const int socket_ty...
  function test_poller_exists_with_socket_on_zmq_ctx_term_thread_safe_socket (line 195) | void test_poller_exists_with_socket_on_zmq_ctx_term_thread_safe_socket ()
  function test_poller_exists_with_socket_on_zmq_ctx_term_non_thread_safe_socket (line 204) | void test_poller_exists_with_socket_on_zmq_ctx_term_non_thread_safe_sock...
  function main (line 209) | int main (void)

FILE: tests/test_ctx_options.cpp
  function is_allowed_to_raise_priority (line 20) | bool is_allowed_to_raise_priority ()
  function is_allowed_to_raise_priority (line 46) | bool is_allowed_to_raise_priority ()
  function test_ctx_thread_opts (line 54) | void test_ctx_thread_opts ()
  function test_ctx_zero_copy (line 138) | void test_ctx_zero_copy ()
  function test_ctx_option_max_sockets (line 181) | void test_ctx_option_max_sockets ()
  function test_ctx_option_socket_limit (line 187) | void test_ctx_option_socket_limit ()
  function test_ctx_option_io_threads (line 197) | void test_ctx_option_io_threads ()
  function test_ctx_option_ipv6 (line 203) | void test_ctx_option_ipv6 ()
  function test_ctx_option_msg_t_size (line 208) | void test_ctx_option_msg_t_size ()
  function test_ctx_option_ipv6_set (line 216) | void test_ctx_option_ipv6_set ()
  function test_ctx_option_blocky (line 223) | void test_ctx_option_blocky ()
  function test_ctx_option_invalid (line 259) | void test_ctx_option_invalid ()
  function main (line 267) | int main (void)

FILE: tests/test_dgram.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 9) | SETUP_TEARDOWN_TESTCONTEXT
  function str_recv_from (line 17) | void str_recv_from (void *s_, char **ptr_content_, char **ptr_address_)
  function test_connect_fails (line 29) | void test_connect_fails ()
  function test_roundtrip (line 40) | void test_roundtrip ()
  function main (line 72) | int main (void)

FILE: tests/test_diffserv.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 38) | int main ()

FILE: tests/test_disconnect_inproc.cpp
  function test_disconnect_inproc (line 19) | void test_disconnect_inproc ()
  function main (line 103) | int main (int, char **)

FILE: tests/test_disconnect_msg.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_tcp (line 38) | void test_tcp ()
  function test_inproc (line 43) | void test_inproc ()
  function test_inproc_disconnect (line 49) | void test_inproc_disconnect ()
  function main (line 82) | int main ()

FILE: tests/test_filter_ipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 9) | SETUP_TEARDOWN_TESTCONTEXT
  function run_test (line 36) | static void
  function init_groups (line 85) | void init_groups ()
  function test_no_filters (line 105) | void test_no_filters ()
  function test_filter_with_process_owner_uid (line 111) | void test_filter_with_process_owner_uid ()
  function test_filter_with_possibly_nonexistent_uid (line 115) | void test_filter_with_possibly_nonexistent_uid ()
  function test_filter_with_process_owner_gid (line 119) | void test_filter_with_process_owner_gid ()
  function test_filter_with_supplemental_process_owner_gid (line 123) | void test_filter_with_supplemental_process_owner_gid ()
  function test_filter_with_possibly_nonexistent_gid (line 127) | void test_filter_with_possibly_nonexistent_gid ()
  function test_filter_with_current_process_pid (line 132) | void test_filter_with_current_process_pid ()
  function test_filter_with_possibly_nonexistent_pid (line 136) | void test_filter_with_possibly_nonexistent_pid ()
  function test_filter_with_pid_fails (line 141) | void test_filter_with_pid_fails ()
  function test_filter_with_zero_uid_fails (line 149) | void test_filter_with_zero_uid_fails ()
  function test_filter_with_zero_gid_fails (line 153) | void test_filter_with_zero_gid_fails ()
  function test_filter_with_zero_pid_fails (line 157) | void test_filter_with_zero_pid_fails ()
  function main (line 163) | int main (void)

FILE: tests/test_fork.cpp
  function test_fork (line 18) | void test_fork ()
  function main (line 69) | int main (void)

FILE: tests/test_getsockopt_memset.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 32) | int main (void)

FILE: tests/test_heartbeats.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 28) | SETUP_TEARDOWN_TESTCONTEXT
  function recv_with_retry (line 61) | static void recv_with_retry (raw_socket fd_, char *buffer_, int bytes_)
  function mock_handshake (line 75) | static void mock_handshake (raw_socket fd_, int mock_ping_)
  function setup_curve (line 126) | static void setup_curve (void *socket_, int is_server_)
  function prep_server_socket (line 154) | static void prep_server_socket (int set_heartbeats_,
  function test_heartbeat_timeout (line 198) | static void test_heartbeat_timeout (int server_type_, int mock_ping_)
  function test_heartbeat_ttl (line 233) | static void test_heartbeat_ttl (int client_type_, int server_type_)
  function test_heartbeat_notimeout (line 275) | static void
  function test_heartbeat_timeout_router (line 310) | void test_heartbeat_timeout_router ()
  function test_heartbeat_timeout_router_mock_ping (line 315) | void test_heartbeat_timeout_router_mock_ping ()
  function test_setsockopt_heartbeat_success (line 349) | void test_setsockopt_heartbeat_success (const int value_)
  function test_setsockopt_heartbeat_ttl_max (line 366) | void test_setsockopt_heartbeat_ttl_max ()
  function test_setsockopt_heartbeat_ttl_more_than_max_fails (line 371) | void test_setsockopt_heartbeat_ttl_more_than_max_fails ()
  function test_setsockopt_heartbeat_ttl_near_zero (line 382) | void test_setsockopt_heartbeat_ttl_near_zero ()
  function main (line 387) | int main (void)

FILE: tests/test_hello_msg.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_tcp (line 32) | void test_tcp ()
  function test_inproc (line 37) | void test_inproc ()
  function test_inproc_late_bind (line 42) | void test_inproc_late_bind ()
  function main (line 71) | int main ()

FILE: tests/test_hiccup_msg.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 42) | int main ()

FILE: tests/test_hwm.cpp
  type TestType (line 10) | enum TestType
  function test_defaults (line 16) | void test_defaults ()
  function count_msg (line 49) | int count_msg (int send_hwm_, int recv_hwm_, TestType test_type_)
  function test_inproc_bind_first (line 109) | int test_inproc_bind_first (int send_hwm_, int recv_hwm_)
  function test_inproc_connect_first (line 114) | int test_inproc_connect_first (int send_hwm_, int recv_hwm_)
  function test_inproc_connect_and_close_first (line 119) | int test_inproc_connect_and_close_first (int send_hwm_, int recv_hwm_)
  function test_inproc_bind_and_close_first (line 155) | int test_inproc_bind_and_close_first (int send_hwm_, int /* recv_hwm */)
  function test_infinite_both_inproc_bind_first (line 192) | void test_infinite_both_inproc_bind_first ()
  function test_infinite_both_inproc_connect_first (line 198) | void test_infinite_both_inproc_connect_first ()
  function test_infinite_receive_inproc_bind_first (line 204) | void test_infinite_receive_inproc_bind_first ()
  function test_infinite_receive_inproc_connect_first (line 210) | void test_infinite_receive_inproc_connect_first ()
  function test_infinite_send_inproc_bind_first (line 216) | void test_infinite_send_inproc_bind_first ()
  function test_infinite_send_inproc_connect_first (line 222) | void test_infinite_send_inproc_connect_first ()
  function test_finite_both_bind_first (line 228) | void test_finite_both_bind_first ()
  function test_finite_both_connect_first (line 234) | void test_finite_both_connect_first ()
  function test_infinite_recv_connect_and_close_first (line 241) | void test_infinite_recv_connect_and_close_first ()
  function test_infinite_recv_bind_and_close_first (line 248) | void test_infinite_recv_bind_and_close_first ()
  function main (line 256) | int main (void)

FILE: tests/test_hwm_pubsub.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 12) | SETUP_TEARDOWN_TESTCONTEXT
  function receive (line 62) | int receive (void *socket_, int *is_termination_)
  function test_blocking (line 82) | int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint_)
  function test_reset_hwm (line 158) | void test_reset_hwm ()
  function test_defaults_large (line 220) | void test_defaults_large (const char *bind_endpoint_)
  function test_defaults_small (line 226) | void test_defaults_small (const char *bind_endpoint_)
  function test_blocking (line 232) | void test_blocking (const char *bind_endpoint_)
  function main (line 266) | int main ()

FILE: tests/test_immediate.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_immediate_2 (line 73) | void test_immediate_2 ()
  function test_immediate_3 (line 131) | void test_immediate_3 ()
  function main (line 190) | int main (void)

FILE: tests/test_inproc_connect.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function simult_conn (line 23) | static void simult_conn (void *endpt_)
  function simult_bind (line 38) | static void simult_bind (void *endpt_)
  function test_bind_before_connect (line 53) | void test_bind_before_connect ()
  function test_connect_before_bind (line 74) | void test_connect_before_bind ()
  function test_connect_before_bind_pub_sub (line 95) | void test_connect_before_bind_pub_sub ()
  function test_connect_before_bind_ctx_term (line 124) | void test_connect_before_bind_ctx_term ()
  function test_multiple_connects (line 139) | void test_multiple_connects ()
  function test_multiple_threads (line 171) | void test_multiple_threads ()
  function test_simultaneous_connect_bind_threads (line 199) | void test_simultaneous_connect_bind_threads ()
  function test_routing_id (line 225) | void test_routing_id ()
  function test_connect_only (line 263) | void test_connect_only ()
  function test_unbind (line 272) | void test_unbind ()
  function test_shutdown_during_pend (line 299) | void test_shutdown_during_pend ()
  function main (line 311) | int main (void)

FILE: tests/test_invalid_rep.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 57) | int main ()

FILE: tests/test_iov.cpp
  type iovec (line 15) | struct iovec
  function do_check (line 22) | static void do_check (void *sb_, void *sc_, size_t msg_size_)
  function test_iov (line 100) | void test_iov ()
  function main (line 120) | int main ()

FILE: tests/test_ipc_wildcard.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 23) | int main ()

FILE: tests/test_issue_566.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 64) | int main ()

FILE: tests/test_last_endpoint.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_last_endpoint (line 18) | void test_last_endpoint ()
  function main (line 31) | int main (void)

FILE: tests/test_many_sockets.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 10) | SETUP_TEARDOWN_TESTCONTEXT
  function test_zmq_default_max (line 39) | void test_zmq_default_max ()
  function main (line 63) | int main (void)

FILE: tests/test_metadata.cpp
  function setUp (line 9) | void setUp ()
  function tearDown (line 13) | void tearDown ()
  function zap_handler (line 17) | static void zap_handler (void *handler_)
  function test_metadata (line 60) | void test_metadata ()
  function test_router_prefetch_metadata (line 103) | void test_router_prefetch_metadata ()
  function main (line 153) | int main ()

FILE: tests/test_mock_pub_sub.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 9) | SETUP_TEARDOWN_TESTCONTEXT
  function recv_with_retry (line 42) | static void recv_with_retry (fd_t fd_, char *buffer_, int bytes_)
  function mock_handshake (line 56) | static void mock_handshake (fd_t fd_, bool sub_command, bool mock_pub)
  function prep_server_socket (line 88) | static void prep_server_socket (void **server_out_,
  function test_mock_pub_sub (line 118) | static void test_mock_pub_sub (bool sub_command_, bool mock_pub_)
  function test_mock_sub_command (line 195) | void test_mock_sub_command ()
  function test_mock_sub_legacy (line 200) | void test_mock_sub_legacy ()
  function test_mock_pub_command (line 205) | void test_mock_pub_command ()
  function test_mock_pub_legacy (line 210) | void test_mock_pub_legacy ()
  function main (line 215) | int main (void)

FILE: tests/test_monitor.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 11) | SETUP_TEARDOWN_TESTCONTEXT
  function test_monitor_basic (line 31) | void test_monitor_basic ()
  function test_monitor_versioned_invalid_socket_type (line 108) | void test_monitor_versioned_invalid_socket_type ()
  function test_monitor_versioned_basic (line 120) | void test_monitor_versioned_basic (bind_function_t bind_function_,
  function test_monitor_versioned_basic_tcp_ipv4 (line 252) | void test_monitor_versioned_basic_tcp_ipv4 ()
  function test_monitor_versioned_basic_tcp_ipv6 (line 260) | void test_monitor_versioned_basic_tcp_ipv6 ()
  function test_monitor_versioned_basic_ipc (line 268) | void test_monitor_versioned_basic_ipc ()
  function test_monitor_versioned_basic_tipc (line 276) | void test_monitor_versioned_basic_tipc ()
  function test_monitor_versioned_stats (line 285) | void test_monitor_versioned_stats (bind_function_t bind_function_,
  function test_monitor_versioned_stats_tcp_ipv4 (line 394) | void test_monitor_versioned_stats_tcp_ipv4 ()
  function test_monitor_versioned_stats_tcp_ipv6 (line 400) | void test_monitor_versioned_stats_tcp_ipv6 ()
  function test_monitor_versioned_stats_ipc (line 406) | void test_monitor_versioned_stats_ipc ()
  function main (line 414) | int main ()

FILE: tests/test_msg_ffn.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function test_msg_init_ffn (line 17) | void test_msg_init_ffn ()
  function main (line 92) | int main (void)

FILE: tests/test_msg_flags.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_shared_refcounted (line 42) | void test_shared_refcounted ()
  function test_shared_const (line 66) | void test_shared_const ()
  function main (line 81) | int main ()

FILE: tests/test_msg_init.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function test_msg_init_size (line 18) | void test_msg_init_size ()
  function test_msg_init_buffer (line 34) | void test_msg_init_buffer ()
  function main (line 50) | int main (void)

FILE: tests/test_pair_inproc.cpp
  function setUp (line 11) | void setUp ()
  function tearDown (line 22) | void tearDown ()
  function test_roundtrip (line 30) | void test_roundtrip ()
  function test_zmq_send_const (line 36) | void test_zmq_send_const ()
  function main (line 47) | int main ()

FILE: tests/test_pair_ipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function test_endpoint_too_long (line 28) | void test_endpoint_too_long ()
  function main (line 46) | int main (void)

FILE: tests/test_pair_tcp.cpp
  function set_sockopt_fastpath (line 17) | void set_sockopt_fastpath (void *socket)
  function test_pair_tcp (line 26) | void test_pair_tcp (extra_func_t extra_func_ = NULL)
  function test_pair_tcp_regular (line 48) | void test_pair_tcp_regular ()
  function test_pair_tcp_connect_by_name (line 53) | void test_pair_tcp_connect_by_name ()
  function test_pair_tcp_fastpath (line 84) | void test_pair_tcp_fastpath ()
  function test_io_completion_port (line 91) | void test_io_completion_port ()
  function main (line 119) | int main ()

FILE: tests/test_pair_tcp_cap_net_admin.cpp
  function set_sockopt_bind_to_device (line 10) | void set_sockopt_bind_to_device (void *socket)
  function test_pair_tcp (line 18) | void test_pair_tcp (extra_func_t extra_func_ = NULL)
  function test_pair_tcp_bind_to_device (line 46) | void test_pair_tcp_bind_to_device ()
  function main (line 51) | int main ()

FILE: tests/test_pair_tipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 7) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 23) | int main ()

FILE: tests/test_pair_vmci.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 10) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 36) | int main (void)

FILE: tests/test_pair_vsock.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 13) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 52) | int main (void)

FILE: tests/test_peer.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 79) | int main (void)

FILE: tests/test_peer_disconnect.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 69) | int main (void)

FILE: tests/test_poller.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 15) | SETUP_TEARDOWN_TESTCONTEXT
  function test_null_poller_pointers_destroy_direct (line 25) | void test_null_poller_pointers_destroy_direct ()
  function test_null_poller_pointers_destroy_indirect (line 30) | void test_null_poller_pointers_destroy_indirect ()
  function test_null_poller_pointers_size_direct (line 36) | void test_null_poller_pointers_size_direct ()
  function test_null_poller_pointers_size_indirect (line 41) | void test_null_poller_pointers_size_indirect ()
  function test_null_poller_pointers_add_direct (line 47) | void test_null_poller_pointers_add_direct ()
  function test_null_poller_pointers_add_indirect (line 55) | void test_null_poller_pointers_add_indirect ()
  function test_null_poller_pointers_modify_direct (line 64) | void test_null_poller_pointers_modify_direct ()
  function test_null_poller_pointers_modify_indirect (line 72) | void test_null_poller_pointers_modify_indirect ()
  function test_null_poller_pointers_remove_direct (line 81) | void test_null_poller_pointers_remove_direct ()
  function test_null_poller_pointers_remove_indirect (line 88) | void test_null_poller_pointers_remove_indirect ()
  function test_null_poller_pointers_add_fd_direct (line 97) | void test_null_poller_pointers_add_fd_direct ()
  function test_null_poller_pointers_add_fd_indirect (line 107) | void test_null_poller_pointers_add_fd_indirect ()
  function test_null_poller_pointers_modify_fd_direct (line 117) | void test_null_poller_pointers_modify_fd_direct ()
  function test_null_poller_pointers_modify_fd_indirect (line 126) | void test_null_poller_pointers_modify_fd_indirect ()
  function test_null_poller_pointers_remove_fd_direct (line 136) | void test_null_poller_pointers_remove_fd_direct ()
  function test_null_poller_pointers_remove_fd_indirect (line 144) | void test_null_poller_pointers_remove_fd_indirect ()
  function test_null_poller_pointers_wait_direct (line 153) | void test_null_poller_pointers_wait_direct ()
  function test_null_poller_pointers_wait_indirect (line 159) | void test_null_poller_pointers_wait_indirect ()
  function test_null_poller_pointers_wait_all_direct (line 167) | void test_null_poller_pointers_wait_all_direct ()
  function test_null_poller_pointers_wait_all_indirect (line 174) | void test_null_poller_pointers_wait_all_indirect ()
  function test_null_poller_pointer_poller_fd (line 182) | void test_null_poller_pointer_poller_fd ()
  function test_null_socket_pointers (line 189) | void test_null_socket_pointers ()
  function test_with_empty_poller (line 218) | void test_with_empty_poller (extra_poller_socket_func_t extra_func_)
  function test_with_valid_poller (line 234) | void test_with_valid_poller (extra_poller_func_t extra_func_)
  function test_call_poller_fd_no_signaler (line 251) | void test_call_poller_fd_no_signaler ()
  function test_call_poller_fd (line 269) | void test_call_poller_fd ()
  function call_poller_wait_null_event_fails (line 287) | void call_poller_wait_null_event_fails (void *poller_)
  function call_poller_wait_all_null_event_fails_event_count_nonzero (line 292) | void call_poller_wait_all_null_event_fails_event_count_nonzero (void *po...
  function call_poller_wait_all_null_event_fails_event_count_zero (line 298) | void call_poller_wait_all_null_event_fails_event_count_zero (void *poller_)
  function call_poller_size (line 321) | void call_poller_size (void *poller_, void *socket_)
  function call_poller_add_twice_fails (line 357) | void call_poller_add_twice_fails (void *poller_, void *socket_)
  function call_poller_remove_unregistered_fails (line 369) | void call_poller_remove_unregistered_fails (void *poller_, void *socket_)
  function call_poller_modify_unregistered_fails (line 375) | void call_poller_modify_unregistered_fails (void *poller_, void *socket_)
  function call_poller_add_no_events (line 382) | void call_poller_add_no_events (void *poller_, void *socket_)
  function call_poller_modify_no_events (line 390) | void call_poller_modify_no_events (void *poller_, void *socket_)
  function call_poller_add_fd_twice_fails (line 399) | void call_poller_add_fd_twice_fails (void *poller_, void * /*zeromq_sock...
  function call_poller_remove_fd_unregistered_fails (line 414) | void call_poller_remove_fd_unregistered_fails (void *poller_,
  function call_poller_modify_fd_unregistered_fails (line 426) | void call_poller_modify_fd_unregistered_fails (void *poller_,
  function call_poller_add_invalid_events_fails (line 438) | void call_poller_add_invalid_events_fails (void *poller_, void *zeromq_s...
  function call_poller_modify_invalid_events_fails (line 444) | void call_poller_modify_invalid_events_fails (void *poller_,
  function call_poller_add_fd_invalid_events_fails (line 454) | void call_poller_add_fd_invalid_events_fails (void *poller_,
  function call_poller_modify_fd_invalid_events_fails (line 464) | void call_poller_modify_fd_invalid_events_fails (void *poller_,
  function call_poller_wait_empty_with_timeout_fails (line 499) | void call_poller_wait_empty_with_timeout_fails (void *poller_,
  function call_poller_wait_empty_without_timeout_fails (line 507) | void call_poller_wait_empty_without_timeout_fails (void *poller_,
  function call_poller_wait_all_empty_negative_count_fails (line 515) | void call_poller_wait_all_empty_negative_count_fails (void *poller_,
  function call_poller_wait_all_empty_without_timeout_fails (line 523) | void call_poller_wait_all_empty_without_timeout_fails (void *poller_,
  function call_poller_wait_all_empty_with_timeout_fails (line 531) | void call_poller_wait_all_empty_with_timeout_fails (void *poller_,
  function call_poller_wait_all_inf_disabled_fails (line 540) | void call_poller_wait_all_inf_disabled_fails (void *poller_, void *socket_)
  function test_poll_basic (line 564) | void test_poll_basic ()
  function test_poll_fd (line 605) | void test_poll_fd ()
  function test_poll_client_server (line 639) | void test_poll_client_server ()
  function main (line 693) | int main (void)

FILE: tests/test_probe_router.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_probe_router_dealer (line 45) | void test_probe_router_dealer ()
  function main (line 76) | int main ()

FILE: tests/test_proxy.cpp
  type thread_data (line 17) | struct thread_data
  function setUp (line 26) | void setUp ()
  function client_task (line 45) | static void client_task (void *db_)
  function server_task (line 159) | void server_task (void * /*unused_*/)
  function server_worker (line 218) | static void server_worker (void * /*unused_*/)
  function test_proxy (line 293) | void test_proxy ()
  function main (line 337) | int main (void)

FILE: tests/test_proxy_hwm.cpp
  function lower_hwm (line 47) | static void lower_hwm (void *skt_)
  function publisher_thread_main (line 57) | static void publisher_thread_main (void *pvoid_)
  function subscriber_thread_main (line 113) | static void subscriber_thread_main (void *pvoid_)
  function proxy_stats_asker_thread_main (line 168) | static void proxy_stats_asker_thread_main (void *pvoid_)
  function proxy_thread_main (line 213) | static void proxy_thread_main (void *pvoid_)
  function main (line 277) | int main (void)

FILE: tests/test_proxy_single_socket.cpp
  function setUp (line 8) | void setUp ()
  function server_task (line 16) | void server_task (void * /*unused_*/)
  function test_proxy_single_socket (line 39) | void test_proxy_single_socket ()
  function main (line 69) | int main (void)

FILE: tests/test_proxy_steerable.cpp
  type thread_data (line 21) | struct thread_data
  function setUp (line 33) | void setUp ()
  function client_task (line 52) | static void client_task (void *db_)
  function server_task (line 168) | void server_task (void * /*unused_*/)
  function server_worker (line 240) | static void server_worker (void * /*unused_*/)
  function read_stat_value (line 340) | uint64_t read_stat_value (void *proxy_control)
  function statistics (line 352) | uint64_t statistics (void *proxy_control, const char *runctx)
  function steer (line 392) | void steer (void *proxy_control, const char *command, const char *runctx)
  function test_proxy_steerable (line 412) | void test_proxy_steerable ()
  function main (line 508) | int main (void)

FILE: tests/test_proxy_terminate.cpp
  function setUp (line 8) | void setUp ()
  function server_task (line 18) | void server_task (void * /*unused_*/)
  function test_proxy_terminate (line 49) | void test_proxy_terminate ()
  function main (line 84) | int main (void)

FILE: tests/test_pub_invert_matching.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 86) | int main ()

FILE: tests/test_pubsub.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_norm (line 39) | void test_norm ()
  function main (line 48) | int main ()

FILE: tests/test_pubsub_topics_count.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 7) | SETUP_TEARDOWN_TESTCONTEXT
  function get_subscription_count (line 20) | int get_subscription_count (void *skt)
  function test_independent_topic_prefixes (line 32) | void test_independent_topic_prefixes ()
  function test_nested_topic_prefixes (line 74) | void test_nested_topic_prefixes ()
  function main (line 116) | int main ()

FILE: tests/test_radio_dish.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 30) | SETUP_TEARDOWN_TESTCONTEXT
  function msg_recv_cmp (line 49) | void msg_recv_cmp (void *s_, const char *group_, const char *body_)
  function test_leave_unjoined_fails (line 65) | void test_leave_unjoined_fails ()
  function test_long_group (line 75) | void test_long_group ()
  function test_join_too_long_fails (line 104) | void test_join_too_long_fails ()
  function test_join_twice_fails (line 118) | void test_join_twice_fails ()
  function test_radio_dish_tcp_poll (line 130) | void test_radio_dish_tcp_poll (int ipv6_)
  function test_dish_connect_fails (line 199) | void test_dish_connect_fails (int ipv6_)
  function test_radio_bind_fails (line 215) | void test_radio_bind_fails (int ipv6_)
  function test_radio_dish_udp (line 231) | void test_radio_dish_udp (int ipv6_)
  type sockaddr (line 276) | struct sockaddr
  type sockaddr_in (line 277) | struct sockaddr_in
  type sockaddr_in6 (line 278) | struct sockaddr_in6
  function is_multicast_available (line 283) | static bool is_multicast_available (int ipv6_)
  function ignore_if_unavailable (line 435) | static void ignore_if_unavailable (int ipv6_)
  function test_radio_dish_mcast (line 443) | static void test_radio_dish_mcast (int ipv6_)
  function test_radio_dish_no_loop (line 472) | static void test_radio_dish_no_loop (int ipv6_)
  function main (line 514) | int main (void)

FILE: tests/test_rebind_ipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 35) | int main ()

FILE: tests/test_reconnect_ivl.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_reconnect_ivl_ipc (line 35) | void test_reconnect_ivl_ipc (void)
  function test_reconnect_ivl_tcp (line 48) | void test_reconnect_ivl_tcp (bind_function_t bind_function_)
  function test_reconnect_ivl_tcp_ipv4 (line 59) | void test_reconnect_ivl_tcp_ipv4 ()
  function test_reconnect_ivl_tcp_ipv6 (line 64) | void test_reconnect_ivl_tcp_ipv6 ()
  function main (line 72) | int main (void)

FILE: tests/test_reconnect_options.cpp
  function reconnect_default (line 11) | void reconnect_default ()
  function reconnect_success (line 65) | void reconnect_success ()
  function reconnect_stop_on_refused (line 136) | void reconnect_stop_on_refused ()
  function reconnect_stop_on_handshake_failed (line 198) | void reconnect_stop_on_handshake_failed ()
  function reconnect_stop_after_disconnect (line 251) | void reconnect_stop_after_disconnect ()
  function setUp (line 289) | void setUp ()
  function tearDown (line 294) | void tearDown ()
  function main (line 299) | int main (void)

FILE: tests/test_req_correlate.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 86) | int main ()

FILE: tests/test_req_relaxed.cpp
  function setUp (line 13) | void setUp ()
  function tearDown (line 41) | void tearDown ()
  function bounce (line 50) | static void bounce (void *socket_)
  function get_events (line 73) | static int get_events (void *socket_)
  function test_case_1 (line 82) | void test_case_1 ()
  function test_case_2 (line 117) | void test_case_2 ()
  function test_case_3 (line 141) | void test_case_3 ()
  function test_case_4 (line 155) | void test_case_4 ()
  function main (line 196) | int main ()

FILE: tests/test_reqrep_device.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 91) | int main ()

FILE: tests/test_reqrep_device_tipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 88) | int main ()

FILE: tests/test_reqrep_inproc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 22) | int main ()

FILE: tests/test_reqrep_ipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function test_simple (line 35) | void test_simple (void)
  function main (line 51) | int main (void)

FILE: tests/test_reqrep_tcp.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function make_connect_address (line 37) | void make_connect_address (char *connect_address_,
  function test_multi_connect (line 50) | void test_multi_connect (int ipv6_)
  function test_multi_connect_same_port (line 99) | void test_multi_connect_same_port (int ipv6_)
  function test_single_connect_ipv4 (line 154) | void test_single_connect_ipv4 ()
  function test_multi_connect_ipv4 (line 159) | void test_multi_connect_ipv4 ()
  function test_multi_connect_same_port_ipv4 (line 164) | void test_multi_connect_same_port_ipv4 ()
  function test_single_connect_ipv6 (line 169) | void test_single_connect_ipv6 ()
  function test_multi_connect_ipv6 (line 174) | void test_multi_connect_ipv6 ()
  function test_multi_connect_same_port_ipv6 (line 179) | void test_multi_connect_same_port_ipv6 ()
  function main (line 184) | int main (void)

FILE: tests/test_reqrep_tipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 22) | int main (void)

FILE: tests/test_reqrep_vmci.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 10) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 36) | int main (void)

FILE: tests/test_reqrep_vsock.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 13) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 52) | int main (void)

FILE: tests/test_router_handover.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_without_handover (line 63) | void test_without_handover ()
  function main (line 120) | int main ()

FILE: tests/test_router_mandatory.cpp
  function send_msg_to_peer_if_ready (line 11) | bool send_msg_to_peer_if_ready (void *router_, const char *peer_routing_...
  function test_get_peer_state (line 27) | void test_get_peer_state ()
  function test_get_peer_state_corner_cases (line 127) | void test_get_peer_state_corner_cases ()
  function test_basic (line 158) | void test_basic ()
  function main (line 196) | int main (void)

FILE: tests/test_router_mandatory_hwm.cpp
  function test_router_mandatory_hwm (line 15) | void test_router_mandatory_hwm ()
  function main (line 86) | int main ()

FILE: tests/test_router_mandatory_tipc.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function main (line 38) | int main (void)

FILE: tests/test_router_notify.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function test_router_notify_helper (line 112) | void test_router_notify_helper (int opt_notify_)
  function test_router_notify_connect (line 179) | void test_router_notify_connect ()
  function test_router_notify_disconnect (line 185) | void test_router_notify_disconnect ()
  function test_router_notify_both (line 191) | void test_router_notify_both ()
  function test_handshake_fail (line 197) | void test_handshake_fail ()
  function test_error_during_multipart (line 232) | void test_error_during_multipart ()
  function main (line 282) | int main (void)

FILE: tests/test_scatter_gather.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_scatter_gather (line 27) | void test_scatter_gather ()
  function main (line 53) | int main ()

FILE: tests/test_security_curve.cpp
  function setUp (line 33) | void setUp ()
  function tearDown (line 40) | void tearDown ()
  function zap_handler_large_routing_id (line 56) | static void zap_handler_large_routing_id (void * /*unused_*/)
  function expect_new_client_curve_bounce_fail (line 61) | void expect_new_client_curve_bounce_fail (const char *server_public_,
  function test_null_key (line 77) | void test_null_key (void *server_,
  function test_curve_security_with_valid_credentials (line 105) | void test_curve_security_with_valid_credentials ()
  function test_curve_security_with_bogus_client_credentials (line 128) | void test_curve_security_with_bogus_client_credentials ()
  function expect_zmtp_mechanism_mismatch (line 149) | void expect_zmtp_mechanism_mismatch (void *client_,
  function test_curve_security_with_null_client_credentials (line 166) | void test_curve_security_with_null_client_credentials ()
  function test_curve_security_with_plain_client_credentials (line 173) | void test_curve_security_with_plain_client_credentials ()
  function test_curve_security_unauthenticated_message (line 184) | void test_curve_security_unauthenticated_message ()
  function send_all (line 199) | void send_all (fd_t fd_, const char *data_, socket_size_t size_)
  function send (line 209) | void send (fd_t fd_, const char (&data_)[N])
  function send (line 214) | void send (fd_t fd_, const uint8_t (&data_)[N])
  function test_curve_security_invalid_hello_wrong_length (line 219) | void test_curve_security_invalid_hello_wrong_length ()
  function make_curve_client_tools (line 238) | zmq::curve_client_tools_t make_curve_client_tools ()
  function host_to_network (line 255) | static uint64_t host_to_network (uint64_t value_)
  function send_command (line 271) | void send_command (fd_t s_, char (&command_)[N])
  function test_curve_security_invalid_hello_command_name (line 285) | void test_curve_security_invalid_hello_command_name ()
  function test_curve_security_invalid_hello_version (line 307) | void test_curve_security_invalid_hello_version ()
  function flush_read (line 329) | void flush_read (fd_t fd_)
  function recv_all (line 339) | void recv_all (fd_t fd_, uint8_t *data_, socket_size_t len_)
  function recv_greeting (line 351) | void recv_greeting (fd_t fd_)
  function fd_t (line 358) | fd_t connect_exchange_greeting_and_send_hello (
  function test_curve_security_invalid_initiate_wrong_length (line 374) | void test_curve_security_invalid_initiate_wrong_length ()
  function fd_t (line 395) | fd_t connect_exchange_greeting_and_hello_welcome (
  function test_curve_security_invalid_initiate_command_name (line 418) | void test_curve_security_invalid_initiate_command_name ()
  function test_curve_security_invalid_initiate_command_encrypted_cookie (line 438) | void test_curve_security_invalid_initiate_command_encrypted_cookie ()
  function test_curve_security_invalid_initiate_command_encrypted_content (line 458) | void test_curve_security_invalid_initiate_command_encrypted_content ()
  function test_curve_security_invalid_keysize (line 478) | void test_curve_security_invalid_keysize (void *ctx_)
  function test_null_server_key (line 499) | void test_null_server_key ()
  function test_null_client_public_key (line 507) | void test_null_client_public_key ()
  function test_null_client_secret_key (line 515) | void test_null_client_secret_key ()
  function main (line 524) | int main (void)

FILE: tests/test_security_gssapi.cpp
  function zap_handler (line 30) | static void zap_handler (void *handler_)
  function check_krb_available (line 80) | void check_krb_available ()
  function setUp (line 87) | void setUp ()
  function tearDown (line 130) | void tearDown ()
  function test_valid_creds (line 144) | void test_valid_creds ()
  function test_unauth_creds (line 166) | void test_unauth_creds ()
  function test_null_creds (line 188) | void test_null_creds ()
  function test_plain_creds (line 203) | void test_plain_creds ()
  function test_vanilla_socket (line 216) | void test_vanilla_socket ()
  function main (line 233) | int main (void)

FILE: tests/test_security_no_zap_handler.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_no_zap_handler_enforce_domain (line 25) | void test_no_zap_handler_enforce_domain ()
  function main (line 47) | int main ()

FILE: tests/test_security_null.cpp
  function zap_handler (line 20) | static void zap_handler (void *handler_)
  function setup_zap_handler (line 62) | static void setup_zap_handler ()
  function teardown_zap_handler (line 72) | static void teardown_zap_handler ()
  function setUp (line 78) | void setUp ()
  function tearDown (line 84) | void tearDown ()
  function test_no_domain (line 90) | void test_no_domain ()
  function test_wrong_domain_fails (line 104) | void test_wrong_domain_fails ()
  function test_success (line 121) | void test_success ()
  function test_vanilla_socket (line 136) | void test_vanilla_socket ()
  function main (line 162) | int main ()

FILE: tests/test_security_plain.cpp
  function zap_handler (line 9) | static void zap_handler (void *zap_)
  function setup_zap_handler (line 58) | static void setup_zap_handler ()
  function teardown_zap_handler (line 68) | static void teardown_zap_handler ()
  function setup_server (line 78) | static void setup_server ()
  function teardown_server (line 92) | static void teardown_server ()
  function setUp (line 97) | void setUp ()
  function tearDown (line 104) | void tearDown ()
  function test_plain_success (line 111) | void test_plain_success ()
  function test_plain_client_as_server_fails (line 126) | void test_plain_client_as_server_fails ()
  function test_plain_wrong_credentials_fails (line 141) | void test_plain_wrong_credentials_fails ()
  function test_plain_vanilla_socket (line 156) | void test_plain_vanilla_socket ()
  function main (line 174) | int main (void)

FILE: tests/test_security_zap.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function zap_handler_wrong_request_id (line 13) | static void zap_handler_wrong_request_id (void * /*unused_*/)
  function zap_handler_wrong_status_invalid (line 18) | static void zap_handler_wrong_status_invalid (void * /*unused_*/)
  function zap_handler_wrong_status_temporary_failure (line 23) | static void zap_handler_wrong_status_temporary_failure (void * /*unused_*/)
  function zap_handler_wrong_status_internal_error (line 28) | static void zap_handler_wrong_status_internal_error (void * /*unused_*/)
  function zap_handler_too_many_parts (line 33) | static void zap_handler_too_many_parts (void * /*unused_*/)
  function zap_handler_disconnect (line 38) | static void zap_handler_disconnect (void * /*unused_*/)
  function zap_handler_do_not_recv (line 43) | static void zap_handler_do_not_recv (void * /*unused_*/)
  function zap_handler_do_not_send (line 48) | static void zap_handler_do_not_send (void * /*unused_*/)
  function expect_new_client_bounce_fail_and_count_monitor_events (line 53) | int expect_new_client_bounce_fail_and_count_monitor_events (
  function test_zap_unsuccessful (line 76) | void test_zap_unsuccessful (char *my_endpoint_,
  function test_zap_unsuccessful_no_handler (line 99) | void test_zap_unsuccessful_no_handler (char *my_endpoint_,
  function test_zap_protocol_error (line 118) | void test_zap_protocol_error (char *my_endpoint_,
  function test_zap_unsuccessful_status_300 (line 130) | void test_zap_unsuccessful_status_300 (char *my_endpoint_,
  function test_zap_unsuccessful_status_500 (line 147) | void test_zap_unsuccessful_status_500 (char *my_endpoint_,
  function test_zap_protocol_error_closure (line 159) | static void
  function test_zap_protocol_error_wrong_version (line 179) | static void
  function test_zap_protocol_error_wrong_request_id (line 191) | static void test_zap_protocol_error_wrong_request_id (
  function test_zap_protocol_error_wrong_status_invalid (line 203) | static void test_zap_protocol_error_wrong_status_invalid (
  function test_zap_protocol_error_too_many_parts (line 215) | static void
  function test_zap_wrong_status_temporary_failure (line 230) | static void
  function test_zap_wrong_status_internal_error (line 248) | static void
  function test_zap_unsuccesful_no_handler_started (line 264) | static void
  function test_zap_unsuccesful_no_handler_closure (line 288) | static void
  function test_zap_unsuccesful_disconnect (line 307) | static void
  function test_zap_unsuccesful_do_not_recv (line 317) | static void
  function test_zap_unsuccesful_do_not_send (line 327) | static void
  function main (line 430) | int main ()

FILE: tests/test_setsockopt.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 8) | SETUP_TEARDOWN_TESTCONTEXT
  function test_setsockopt_tcp_send_buffer (line 34) | void test_setsockopt_tcp_send_buffer ()
  function test_setsockopt_use_fd (line 58) | void test_setsockopt_use_fd ()
  function test_setsockopt_bindtodevice (line 83) | void test_setsockopt_bindtodevice ()
  function test_setsockopt_priority (line 113) | void test_setsockopt_priority ()
  function main (line 147) | int main ()

FILE: tests/test_shutdown_stress.cpp
  function setUp (line 6) | void setUp ()
  function tearDown (line 10) | void tearDown ()
  type thread_data (line 16) | struct thread_data
  function worker (line 22) | static void worker (void *data_)
  function test_shutdown_stress (line 35) | void test_shutdown_stress ()
  function main (line 63) | int main ()

FILE: tests/test_shutdown_stress_tipc.cpp
  function setUp (line 8) | void setUp ()
  function tearDown (line 12) | void tearDown ()
  function test_shutdown_stress_tipc (line 31) | void test_shutdown_stress_tipc ()
  function main (line 62) | int main ()

FILE: tests/test_socket_null.cpp
  function setUp (line 7) | void setUp ()
  function tearDown (line 11) | void tearDown ()
  function test_zmq_socket_null_context (line 16) | void test_zmq_socket_null_context ()
  function test_zmq_close_null_socket (line 22) | void test_zmq_close_null_socket ()
  function test_zmq_setsockopt_null_socket (line 29) | void test_zmq_setsockopt_null_socket ()
  function test_zmq_getsockopt_null_socket (line 38) | void test_zmq_getsockopt_null_socket ()
  function test_zmq_socket_monitor_null_socket (line 47) | void test_zmq_socket_monitor_null_socket ()
  function test_zmq_join_null_socket (line 55) | void test_zmq_join_null_socket ()
  function test_zmq_leave_null_socket (line 62) | void test_zmq_leave_null_socket ()
  function test_zmq_bind_null_socket (line 71) | void test_zmq_bind_null_socket ()
  function test_zmq_connect_null_socket (line 78) | void test_zmq_connect_null_socket ()
  function test_zmq_unbind_null_socket (line 85) | void test_zmq_unbind_null_socket ()
  function test_zmq_disconnect_null_socket (line 92) | void test_zmq_disconnect_null_socket ()
  function main (line 99) | int main (void)

FILE: tests/test_socket_options_fuzzer.cpp
  function LLVMFuzzerTestOneInput (line 16) | int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
  function test_socket_options_fuzzer (line 42) | void test_socket_options_fuzzer ()
  function main (line 62) | int main (int argc, char **argv)

FILE: tests/test_sockopt_hwm.cpp
  function test_change_before_connected (line 10) | void test_change_before_connected ()
  function test_change_after_connected (line 43) | void test_change_after_connected ()
  function send_until_wouldblock (line 80) | int send_until_wouldblock (void *socket_)
  function test_fill_up_to_hwm (line 91) | int test_fill_up_to_hwm (void *socket_, int sndhwm_)
  function test_decrease_when_full (line 100) | void test_decrease_when_full ()
  function main (line 163) | int main ()

FILE: tests/test_socks.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 22) | SETUP_TEARDOWN_TESTCONTEXT
  function recvonce (line 40) | int recvonce (int sock_fd, char *buffer, int len)
  function sendall (line 51) | void sendall (int sock_fd, char *buffer, int len)
  function remote_connect (line 66) | int remote_connect (int socket, uint32_t addr, uint16_t port)
  function socks_server_task (line 91) | void socks_server_task (void *socks_server,
  function socks_server_no_auth (line 356) | void socks_server_no_auth (void *socks_server)
  function socks_server_no_auth_delay (line 361) | void socks_server_no_auth_delay (void *socks_server)
  function socks_server_basic_auth (line 369) | void socks_server_basic_auth (void *socks_server)
  function socks_server_basic_auth_delay (line 374) | void socks_server_basic_auth_delay (void *socks_server)
  function socks_server_basic_auth_no_pass (line 382) | void socks_server_basic_auth_no_pass (void *socks_server)
  function communicate (line 450) | void communicate (void *push, void *pull)
  function test_socks_no_socks (line 461) | void test_socks_no_socks (void)
  function test_socks (line 473) | void test_socks (void)
  function test_socks_delay (line 492) | void test_socks_delay (void)
  function test_socks_domainname (line 511) | void test_socks_domainname (void)
  function test_socks_ipv6 (line 535) | void test_socks_ipv6 (void)
  function test_socks_ipv6_sb (line 559) | void test_socks_ipv6_sb (void)
  function test_socks_bind_before_connect (line 583) | void test_socks_bind_before_connect (void)
  function test_socks_basic_auth (line 607) | void test_socks_basic_auth (void)
  function test_socks_basic_auth_delay (line 632) | void test_socks_basic_auth_delay (void)
  function test_socks_basic_auth_empty_user (line 657) | void test_socks_basic_auth_empty_user (void)
  function test_socks_basic_auth_null_user (line 682) | void test_socks_basic_auth_null_user (void)
  function test_socks_basic_auth_empty_pass (line 707) | void test_socks_basic_auth_empty_pass (void)
  function test_socks_basic_auth_null_pass (line 732) | void test_socks_basic_auth_null_pass (void)
  function test_string_opt_ok (line 758) | void test_string_opt_ok (const char *msg, int opt, const char *value)
  function test_opt_ok (line 774) | void test_opt_ok (const char *msg,
  function test_opt_invalid (line 796) | void test_opt_invalid (const char *msg, int opt, const char *value, int ...
  function test_socks_proxy_options (line 806) | void test_socks_proxy_options (void)
  function test_socks_userpass_options (line 815) | void test_socks_userpass_options (void)
  function main (line 846) | int main ()

FILE: tests/test_sodium.cpp
  function setUp (line 6) | void setUp ()
  function tearDown (line 10) | void tearDown ()
  function test__zmq_curve_keypair__always__success (line 15) | void test__zmq_curve_keypair__always__success (void)
  function test__zmq_curve_public__valid__success (line 30) | void test__zmq_curve_public__valid__success ()
  function test__zmq_curve_public__invalid__failure (line 51) | void test__zmq_curve_public__invalid__failure (const char *secret_)
  function test__zmq_curve_public__invalid__failure_short (line 66) | void test__zmq_curve_public__invalid__failure_short ()
  function test__zmq_curve_public__invalid__failure_long (line 71) | void test__zmq_curve_public__invalid__failure_long ()
  function main (line 77) | int main ()

FILE: tests/test_spec_dealer.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 6) | SETUP_TEARDOWN_TESTCONTEXT
  function test_fair_queue_in (line 50) | void test_fair_queue_in (const char *bind_address_)
  function test_destroy_queue_on_disconnect (line 98) | void test_destroy_queue_on_disconnect (const char *bind_address_)
  function test_block_on_send_no_peers (line 142) | void test_block_on_send_no_peers (const char *bind_address_)
  function main (line 174) | int main (void)

FILE: tests/test_spec_pushpull.cpp
  function test_push_round_robin_out (line 15) | void test_push_round_robin_out (const char *bind_address_)
  function test_pull_fair_queue_in (line 55) | void test_pull_fair_queue_in (const char *bind_address_)
  function test_push_block_on_send_no_peers (line 127) | void test_push_block_on_send_no_peers (const char *bind_address_)
  function test_destroy_queue_on_disconnect (line 145) | void test_destroy_queue_on_disconnect (const char *bind_address_)
  function test_push_multipart_atomic_drop (line 210) | void test_push_multipart_atomic_drop (const char *bind_address_,
  function main (line 373) | int main ()

FILE: tests/test_spec_rep.cpp
  function test_fair_queue_in (line 12) | void test_fair_queue_in (const char *bind_address_)
  function test_envelope (line 67) | void test_envelope (const char *bind_address_)
  function test_fair_queue_in_inproc (line 99) | void test_fair_queue_in_inproc ()
  function test_fair_queue_in_tcp (line 104) | void test_fair_queue_in_tcp ()
  function test_envelope_inproc (line 109) | void test_envelope_inproc ()
  function test_envelope_tcp (line 114) | void test_envelope_tcp ()
  function main (line 119) | int main ()

FILE: tests/test_spec_req.cpp
  function test_round_robin_out (line 10) | void test_round_robin_out (const char *bind_address_)
  function test_req_only_listens_to_current_peer (line 44) | void test_req_only_listens_to_current_peer (const char *bind_address_)
  function test_req_message_format (line 99) | void test_req_message_format (const char *bind_address_)
  function test_block_on_send_no_peers (line 148) | void test_block_on_send_no_peers ()
  function test_round_robin_out_inproc (line 165) | void test_round_robin_out_inproc ()
  function test_round_robin_out_tcp (line 170) | void test_round_robin_out_tcp ()
  function test_req_message_format_inproc (line 175) | void test_req_message_format_inproc ()
  function test_req_message_format_tcp (line 180) | void test_req_message_format_tcp ()
  function test_req_only_listens_to_current_peer_inproc (line 185) | void test_req_only_listens_to_current_peer_inproc ()
  function test_req_only_listens_to_current_peer_tcp (line 190) | void test_req_only_listens_to_current_peer_tcp ()
  function main (line 195) | int main ()

FILE: tests/test_spec_router.cpp
  function SETUP_TEARDOWN_TESTCONTEXT (line 9) | SETUP_TEARDOWN_TESTCONTEXT
  function test_destroy_queue_on_disconnect (line 84) | void test_destroy_queue_on_disconnect (const char *bind_address_)
  function main (line 156) | int main ()

FILE: tests/test_srcfd.cpp
  function test_srcfd (line 21) | void test_srcfd ()
  function main (line 84) | int main ()

FILE: tests/test_stream.cpp
  function test_stream_to_dealer (line 30) | static void test_stream_to_dealer ()
  function test_stream_to_stream (line 187) | static void test_stream_to_stream ()
  function main (line 268) | int main ()

FILE: tests/test_stream_disconnect.cpp
  type test_message_t (line 13) | struct test_message_t
  function has_more (line 27) | bool has_more (void *socket_)
  function test_stream_disconnect (line 37) | void test_stream_disconnect ()
  f
Condensed preview — 819 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,765K chars).
[
  {
    "path": ".clang-format",
    "chars": 1414,
    "preview": "BasedOnStyle: LLVM\nIndentWidth: 4\nUseTab: Never\nBreakBeforeBraces: Custom\nBraceWrapping: \n    AfterClass: true\n    After"
  },
  {
    "path": ".clang-tidy",
    "chars": 20379,
    "preview": "Checks:        \"*,\\\n# not currently a coding convention, but conceivable,\\\n-llvm-include-order,\\\n# currently the coding "
  },
  {
    "path": ".git-blame-ignore-revs",
    "chars": 66,
    "preview": "# tree-wide clang format\n41f459e1dc6f7cdedd1268298153c970e290b2ce\n"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "chars": 1624,
    "preview": "# Pull Request Notice\n\nBefore sending a pull request make sure each commit solves one clear, minimal,\nplausible problem."
  },
  {
    "path": ".github/issue_template.md",
    "chars": 348,
    "preview": "*Please use this template for reporting suspected bugs or requests for help.*\n\n# Issue description\n\n\n\n# Environment\n\n* l"
  },
  {
    "path": ".github/stale.yml",
    "chars": 760,
    "preview": "# Number of days of inactivity before an issue becomes stale\ndaysUntilStale: 365\n# Number of days of inactivity before a"
  },
  {
    "path": ".github/workflows/CI.yaml",
    "chars": 8676,
    "preview": "name: CI\non:\n  push:\n  pull_request:\n  schedule:\n    - cron: \"0 9 * * 5\"\n\njobs:\n  build:\n    if: github.event_name == 'p"
  },
  {
    "path": ".github/workflows/Docs.yaml",
    "chars": 1512,
    "preview": "# Simple workflow for deploying static content to GitHub Pages\nname: Deploy API docs content to Pages\n\non:\n  # Runs on p"
  },
  {
    "path": ".github/workflows/Fuzzers.yaml",
    "chars": 935,
    "preview": "name: Fuzzers\non:\n  push:\n    branches:\n      - master\n  pull_request:\n    paths:\n      - '.github/workflows/Fuzzers.yam"
  },
  {
    "path": ".gitignore",
    "chars": 2076,
    "preview": "syntax: glob # for hg-git users\n\n# Generated build scripts and IDE generating files\n## autotools\n/Makefile\nbuilds/Makefi"
  },
  {
    "path": ".hgeol",
    "chars": 23,
    "preview": "[patterns]\n** = native\n"
  },
  {
    "path": ".mailmap",
    "chars": 5822,
    "preview": "Ahmet Kakici <ahmet.kakici@pro-line.com.tr> ahmet <ahmet.kakici@pro-line.com.tr>\nAndrey Sibiryov <me@kobology.ru> Kobolo"
  },
  {
    "path": ".obs/workflows.yml",
    "chars": 687,
    "preview": "workflow:\n  steps:\n    - branch_package:\n        source_project: network:messaging:zeromq:git-draft\n        source_packa"
  },
  {
    "path": ".readthedocs.yaml",
    "chars": 1337,
    "preview": "#\n# libzmq readthedocs.io integration\n#\n# This configuration file is processed by readthedocs.io to rebuild the\n# libzmq"
  },
  {
    "path": ".travis.yml",
    "chars": 1938,
    "preview": "# Travis CI script\n\nlanguage: c\n\nos:\n- linux\n\ndist: bionic\n\ncache: ccache\n\nenv:\n  matrix:\n    - BUILD_TYPE=default\n  # t"
  },
  {
    "path": "AUTHORS",
    "chars": 2375,
    "preview": "Corporate Contributors\n======================\n\nCopyright (c) 2007-2014 iMatix Corporation\nCopyright (c) 2009-2011 250bpm"
  },
  {
    "path": "CMakeLists.txt",
    "chars": 64451,
    "preview": "# CMake build script for ZeroMQ\n\nif(${CMAKE_HOST_SYSTEM_NAME} STREQUAL Darwin)\n  cmake_minimum_required(VERSION 3.0.2..."
  },
  {
    "path": "Dockerfile",
    "chars": 949,
    "preview": "FROM debian:buster-slim AS builder\nLABEL maintainer=\"ZeroMQ Project <zeromq@imatix.com>\"\nARG DEBIAN_FRONTEND=noninteract"
  },
  {
    "path": "Doxygen.cfg",
    "chars": 101242,
    "preview": "# Doxyfile 1.8.11\n\n# This file describes the settings to be used by the documentation system\n# doxygen (www.doxygen.org)"
  },
  {
    "path": "INSTALL",
    "chars": 12342,
    "preview": "Installation Instructions\n*************************\n\nCopyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,"
  },
  {
    "path": "Jenkinsfile",
    "chars": 31297,
    "preview": "pipeline {\n    agent { label \"linux || macosx || bsd || solaris || posix || windows\" }\n    parameters {\n        // Use D"
  },
  {
    "path": "LICENSE",
    "chars": 16725,
    "preview": "Mozilla Public License Version 2.0\n==================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\""
  },
  {
    "path": "Makefile.am",
    "chars": 52660,
    "preview": "ACLOCAL_AMFLAGS = -I config\n\nSUBDIRS = doc\n\nDIST_SUBDIRS = doc builds builds/deprecated-msvc\n\npkgconfig_DATA = src/libzm"
  },
  {
    "path": "NEWS",
    "chars": 82059,
    "preview": "0MQ version 4.3.5 stable, released on 2023/10/09\n================================================\n\n* Relicensing from LG"
  },
  {
    "path": "README.cygwin.md",
    "chars": 617,
    "preview": "libzmq-cygwin\n=============\n\nDefinitive build fixes for cygwin  (See https://github.com/zeromq/pyzmq/issues/113 for part"
  },
  {
    "path": "README.doxygen.md",
    "chars": 2058,
    "preview": "## Overview\n\nThe ZeroMQ lightweight messaging kernel is a library which extends the\nstandard socket interfaces with feat"
  },
  {
    "path": "README.md",
    "chars": 14780,
    "preview": "# ZeroMQ\n\n[![Build Status](https://github.com/zeromq/libzmq/actions/workflows/CI.yaml/badge.svg)](https://github.com/zer"
  },
  {
    "path": "SECURITY.md",
    "chars": 18140,
    "preview": "# Security Policy\n\n## Supported Versions\n\n4.x versions are supported with critical and security bug fixes.\n\n| Version | "
  },
  {
    "path": "SupportedPlatforms.md",
    "chars": 1980,
    "preview": "libzmq supports a large variety of platforms. The list of platforms can be found in the [README](README.md#platforms).\nT"
  },
  {
    "path": "acinclude.m4",
    "chars": 52183,
    "preview": "dnl ##############################################################################\ndnl # LIBZMQ_CONFIG_LIBTOOL          "
  },
  {
    "path": "appveyor.yml",
    "chars": 13897,
    "preview": "version: build-{build}\n\nshallow_clone: true\n\nos: Visual Studio 2013\n\nenvironment:\n  CMAKE_GENERATOR: \"Visual Studio 12 2"
  },
  {
    "path": "autogen.sh",
    "chars": 937,
    "preview": "#!/bin/sh\n# SPDX-License-Identifier: MPL-2.0\n\n# Script to generate all required files from fresh git checkout.\n\n# Debian"
  },
  {
    "path": "build_qnx/Makefile",
    "chars": 122,
    "preview": "LIST=OS\nifndef QRECURSE\nQRECURSE=recurse.mk\nifdef QCONFIG\nQRDIR=$(dir $(QCONFIG))\nendif\nendif\ninclude $(QRDIR)$(QRECURSE"
  },
  {
    "path": "build_qnx/common.mk",
    "chars": 1627,
    "preview": "ifndef QCONFIG\nQCONFIG=qconfig.mk\nendif\ninclude $(QCONFIG)\n\nNAME=libzmq\n\n#$(INSTALL_ROOT_$(OS)) is pointing to $QNX_TARG"
  },
  {
    "path": "build_qnx/nto/Makefile",
    "chars": 123,
    "preview": "LIST=CPU\nifndef QRECURSE\nQRECURSE=recurse.mk\nifdef QCONFIG\nQRDIR=$(dir $(QCONFIG))\nendif\nendif\ninclude $(QRDIR)$(QRECURS"
  },
  {
    "path": "build_qnx/nto/aarch64/Makefile",
    "chars": 127,
    "preview": "LIST=VARIANT\nifndef QRECURSE\nQRECURSE=recurse.mk\nifdef QCONFIG\nQRDIR=$(dir $(QCONFIG))\nendif\nendif\ninclude $(QRDIR)$(QRE"
  },
  {
    "path": "build_qnx/nto/aarch64/le/Makefile",
    "chars": 156,
    "preview": "include ../../../common.mk\n\nCMAKE_ARGS += -DCMAKE_SYSTEM_PROCESSOR=aarch64 \nFLAGS      += $(VFLAG_le) $(CCVFLAG_le)\nLDFL"
  },
  {
    "path": "build_qnx/nto/x86_64/Makefile",
    "chars": 127,
    "preview": "LIST=VARIANT\nifndef QRECURSE\nQRECURSE=recurse.mk\nifdef QCONFIG\nQRDIR=$(dir $(QCONFIG))\nendif\nendif\ninclude $(QRDIR)$(QRE"
  },
  {
    "path": "build_qnx/nto/x86_64/o/Makefile",
    "chars": 150,
    "preview": "include ../../../common.mk\n\nCMAKE_ARGS += -DCMAKE_SYSTEM_PROCESSOR=x86_64\nFLAGS      += $(VFLAG_o) $(CCVFLAG_o)\nLDFLAGS "
  },
  {
    "path": "build_qnx/qnx.nto.toolchain.cmake",
    "chars": 1760,
    "preview": "if(\"$ENV{QNX_HOST}\" STREQUAL \"\")\n    message(FATAL_ERROR \"QNX_HOST environment variable not found. Please set the variab"
  },
  {
    "path": "builds/Makefile.am",
    "chars": 790,
    "preview": "#  Specify all build files that have to go into source packages.\n#  msvc directory does its own stuff.\n\nEXTRA_DIST = \\\n "
  },
  {
    "path": "builds/README",
    "chars": 805,
    "preview": "This directory holds build tools, i.e. tools we use to build the current\ncode tree. Packaging tools (which take released"
  },
  {
    "path": "builds/abi-compliance-checker/ci_build.sh",
    "chars": 1392,
    "preview": "#!/usr/bin/env bash\n\nset -x\nset -e\n\ncd ../../\n\nmkdir tmp\nBUILD_PREFIX=$PWD/tmp\n\nCONFIG_OPTS=()\nCONFIG_OPTS+=(\"CFLAGS=-I$"
  },
  {
    "path": "builds/android/Dockerfile",
    "chars": 1635,
    "preview": "# FROM\t\tdebian:7       # APT repo no more available.\n# FROM\t\tdebian:8\n# FROM\t\tdebian:9\n# FROM\t\tdebian:10\n# FROM\t\tdebian:"
  },
  {
    "path": "builds/android/README.md",
    "chars": 4220,
    "preview": "# Android Build\n\n## Preamble\n\nThe last known NDK is automatically downloaded, if not specified otherwise.\n\nAs indicated "
  },
  {
    "path": "builds/android/android_build_helper.sh",
    "chars": 24798,
    "preview": "#!/usr/bin/env bash\n#\n# Copyright (c) 2014, Joe Eli McIlvain\n# All rights reserved.\n#\n# Redistribution and use in source"
  },
  {
    "path": "builds/android/build.sh",
    "chars": 5293,
    "preview": "#!/usr/bin/env bash\n#\n#   Exit if any step fails\nset -e\n\n# Use directory of current script as the working directory\ncd \""
  },
  {
    "path": "builds/android/ci_build.sh",
    "chars": 931,
    "preview": "#!/usr/bin/env bash\n#\n#   Exit if any step fails\nset -e\n\n# Use directory of current script as the working directory\ncd \""
  },
  {
    "path": "builds/cmake/Modules/ClangFormat.cmake",
    "chars": 1538,
    "preview": "# additional target to perform clang-format run, requires clang-format\n\n# get all project files\nfile(GLOB_RECURSE ALL_SO"
  },
  {
    "path": "builds/cmake/Modules/FindAsciiDoctor.cmake",
    "chars": 891,
    "preview": "# - Find Asciidoctor\n# this module looks for asciidoctor\n#\n# ASCIIDOCTOR_EXECUTABLE - the full path to asciidoc\n# ASCIID"
  },
  {
    "path": "builds/cmake/Modules/FindNSS3.cmake",
    "chars": 223,
    "preview": "include(FindPackageHandleStandardArgs)\n\nif (NOT MSVC)\n    find_package(PkgConfig REQUIRED)\n    pkg_check_modules(NSS3 \"n"
  },
  {
    "path": "builds/cmake/Modules/Findgssapi_krb5.cmake",
    "chars": 1629,
    "preview": "if (NOT MSVC)\nfind_package(PkgConfig REQUIRED) \npkg_check_modules(PC_GSSAPI_KRB5 \"libgssapi_krb5\")\nif (PC_GSSAPI_KRB5_FO"
  },
  {
    "path": "builds/cmake/Modules/Findsodium.cmake",
    "chars": 1899,
    "preview": "################################################################################\n#  THIS FILE IS 100% GENERATED BY ZPROJ"
  },
  {
    "path": "builds/cmake/Modules/TestZMQVersion.cmake",
    "chars": 529,
    "preview": "\nfile(READ \"${PROJECT_SOURCE_DIR}/include/zmq.h\" _ZMQ_H_CONTENTS)\nstring(REGEX REPLACE \".*#define ZMQ_VERSION_MAJOR ([0-"
  },
  {
    "path": "builds/cmake/Modules/ZMQSourceRunChecks.cmake",
    "chars": 7294,
    "preview": "\n\nmacro(zmq_check_sock_cloexec)\n  message(STATUS \"Checking whether SOCK_CLOEXEC is supported\")\n  check_c_source_runs(\n  "
  },
  {
    "path": "builds/cmake/Modules/ZMQSupportMacros.cmake",
    "chars": 107,
    "preview": "macro (zmq_set_with_default var value)\n  if (NOT ${var})\n    set(${var} \"${value}\")\n  endif ()\nendmacro ()\n"
  },
  {
    "path": "builds/cmake/NSIS.template32.in",
    "chars": 27663,
    "preview": "; CPack install script designed for a nmake build\n\n;--------------------------------\n; You must define these values\n\n  !"
  },
  {
    "path": "builds/cmake/NSIS.template64.in",
    "chars": 27968,
    "preview": "; CPack install script designed for a nmake build\n\n;--------------------------------\n; You must define these values\n\n  !"
  },
  {
    "path": "builds/cmake/ZeroMQConfig.cmake.in",
    "chars": 919,
    "preview": "# ZeroMQ cmake module\n#\n# The following import targets are created\n#\n# ::\n#\n#   libzmq-static\n#   libzmq\n#\n# This module"
  },
  {
    "path": "builds/cmake/ci_build.sh",
    "chars": 4859,
    "preview": "#!/usr/bin/env bash\n\nset -x -e\n\ncd ../..\n\n# always install custom builds from dist\n# to make sure that `make dist` doesn"
  },
  {
    "path": "builds/cmake/clang-format-check.sh.in",
    "chars": 313,
    "preview": "#!/bin/sh\nFAILED=0\nIFS=\";\"\nFILES=\"@ALL_SOURCE_FILES@\"\nIDS=$(echo -en \"\\n\\b\")\nfor FILE in $FILES\ndo\n\t@CLANG_FORMAT@ -styl"
  },
  {
    "path": "builds/cmake/platform.hpp.in",
    "chars": 3427,
    "preview": "#ifndef __ZMQ_PLATFORM_HPP_INCLUDED__\n#define __ZMQ_PLATFORM_HPP_INCLUDED__\n\n#cmakedefine ZMQ_USE_CV_IMPL_STL11\n#cmakede"
  },
  {
    "path": "builds/coverage/ci_build.sh",
    "chars": 378,
    "preview": "#!/usr/bin/env bash\n\nset -x\n\nmkdir tmp\nBUILD_PREFIX=$PWD/tmp\n\nsource ../../config.sh\nset_config_opts\n\nCONFIG_OPTS+=(\"--e"
  },
  {
    "path": "builds/cygwin/Makefile.cygwin",
    "chars": 1395,
    "preview": "CC=gcc\nCFLAGS=-Wall -Os -g -DDLL_EXPORT -DFD_SETSIZE=16384 -DZMQ_USE_SELECT -I.\nLIBS=-lws2_32\n\nOBJS = ctx.o reaper.o dis"
  },
  {
    "path": "builds/deprecated-msvc/.gitignore",
    "chars": 4555,
    "preview": "## Visual Studio 2015 experimental Visual C/C++ Intellisense database\r\n*.VC.db\r\n\r\n\r\n## From https://github.com/github/gi"
  },
  {
    "path": "builds/deprecated-msvc/Makefile.am",
    "chars": 4071,
    "preview": "LIBZMQ_DIST = vs2008/libzmq.sln \\\n              vs2008/libzmq/libzmq.vcproj \\\n              vs2010/libzmq.sln \\\n        "
  },
  {
    "path": "builds/deprecated-msvc/errno.cpp",
    "chars": 571,
    "preview": "#if defined _WIN32_WCE\n\n//#include \"..\\..\\include\\zmq.h\"\n#include \"..\\..\\src\\err.hpp\"\n\nint errno;\nint _doserrno;\nint _sy"
  },
  {
    "path": "builds/deprecated-msvc/errno.hpp",
    "chars": 1284,
    "preview": "#ifndef ERRNO_H\r\n#define ERRNO_H 1\r\n\r\n//#define EPERM           1\r\n//#define ENOENT          2\r\n//#define ESRCH         "
  },
  {
    "path": "builds/deprecated-msvc/platform.hpp",
    "chars": 476,
    "preview": "#ifndef __PLATFORM_HPP_INCLUDED__\n#define __PLATFORM_HPP_INCLUDED__\n\n#define ZMQ_HAVE_WINDOWS\n\n// MSVC build configurati"
  },
  {
    "path": "builds/deprecated-msvc/properties/Common.props",
    "chars": 694,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DLL.props",
    "chars": 520,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/Debug.props",
    "chars": 1038,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DebugDEXE.props",
    "chars": 631,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DebugDLL.props",
    "chars": 584,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DebugLEXE.props",
    "chars": 587,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DebugLIB.props",
    "chars": 648,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DebugLTCG.props",
    "chars": 627,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/DebugSEXE.props",
    "chars": 622,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/EXE.props",
    "chars": 528,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/LIB.props",
    "chars": 508,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/LTCG.props",
    "chars": 405,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/Link.props",
    "chars": 653,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/Messages.props",
    "chars": 641,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/Output.props",
    "chars": 1324,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/Release.props",
    "chars": 1591,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/ReleaseDEXE.props",
    "chars": 580,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/ReleaseDLL.props",
    "chars": 539,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/ReleaseLEXE.props",
    "chars": 586,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/ReleaseLIB.props",
    "chars": 533,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/ReleaseLTCG.props",
    "chars": 560,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/ReleaseSEXE.props",
    "chars": 575,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/Win32.props",
    "chars": 609,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/properties/x64.props",
    "chars": 910,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/readme.txt",
    "chars": 1080,
    "preview": "For building on Windows, use:\n\n     cd build\n     ./build.bat\n\nThis requires that the CMD.EXE be created using the DevSt"
  },
  {
    "path": "builds/deprecated-msvc/resource.h",
    "chars": 388,
    "preview": "//{{NO_DEPENDENCIES}}\n// Microsoft Visual C++ generated include file.\n// Used by resource.rc\n\n// Next default values for"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/inproc_lat/inproc_lat.vcproj",
    "chars": 2941,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9,00\" Name=\"inproc_lat\" Pr"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/inproc_thr/inproc_thr.vcproj",
    "chars": 2941,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9,00\" Name=\"inproc_thr\" Pr"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/libzmq/libzmq.vcproj",
    "chars": 21293,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9,00\" Name=\"libzmq\" Projec"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/libzmq.sln",
    "chars": 6208,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 10.00\n# Visual Studio 2008\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/local_lat/local_lat.vcproj",
    "chars": 2936,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9.00\" Name=\"local_lat\" Pro"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/local_thr/local_thr.vcproj",
    "chars": 3044,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9.00\" Name=\"local_thr\" Pro"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/remote_lat/remote_lat.vcproj",
    "chars": 2941,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9.00\" Name=\"remote_lat\" Pr"
  },
  {
    "path": "builds/deprecated-msvc/vs2008/remote_thr/remote_thr.vcproj",
    "chars": 3049,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<VisualStudioProject ProjectType=\"Visual C++\" Version=\"9.00\" Name=\"remote_thr\" Pr"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/inproc_lat/inproc_lat.props",
    "chars": 1979,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/inproc_lat/inproc_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/inproc_thr/inproc_thr.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/inproc_thr/inproc_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libsodium.import.props",
    "chars": 3044,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libsodium.import.xml",
    "chars": 985,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq/libzmq.props",
    "chars": 4177,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq/libzmq.vcxproj",
    "chars": 14720,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq/libzmq.vcxproj.filters",
    "chars": 21229,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq/libzmq.xml",
    "chars": 2093,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq.import.props",
    "chars": 3548,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq.import.xml",
    "chars": 2461,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/libzmq.sln",
    "chars": 15983,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 11.00\n# Visual Studio 2010\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/local_lat/local_lat.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/local_lat/local_lat.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/local_thr/local_thr.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/local_thr/local_thr.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/remote_lat/remote_lat.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/remote_lat/remote_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/remote_thr/remote_thr.props",
    "chars": 1980,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2010/remote_thr/remote_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/inproc_lat/inproc_lat.props",
    "chars": 1979,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/inproc_lat/inproc_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/inproc_thr/inproc_thr.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/inproc_thr/inproc_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libsodium.import.props",
    "chars": 3044,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libsodium.import.xml",
    "chars": 985,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq/libzmq.props",
    "chars": 4177,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq/libzmq.vcxproj",
    "chars": 14648,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsof"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq/libzmq.vcxproj.filters",
    "chars": 21229,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq/libzmq.xml",
    "chars": 2093,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq.import.props",
    "chars": 3548,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq.import.xml",
    "chars": 2461,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/libzmq.sln",
    "chars": 15983,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 11.00\n# Visual Studio 2012\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/local_lat/local_lat.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/local_lat/local_lat.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/local_thr/local_thr.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/local_thr/local_thr.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/remote_lat/remote_lat.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/remote_lat/remote_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/remote_thr/remote_thr.props",
    "chars": 1980,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2012/remote_thr/remote_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/inproc_lat/inproc_lat.props",
    "chars": 1979,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/inproc_lat/inproc_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/inproc_thr/inproc_thr.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/inproc_thr/inproc_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libsodium.import.props",
    "chars": 3044,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libsodium.import.xml",
    "chars": 985,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq/libzmq.props",
    "chars": 4177,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq/libzmq.vcxproj",
    "chars": 14930,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq/libzmq.vcxproj.filters",
    "chars": 21229,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq/libzmq.xml",
    "chars": 2093,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq.import.props",
    "chars": 3548,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq.import.xml",
    "chars": 2461,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/libzmq.sln",
    "chars": 16060,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 2013\nVisualStudioVersion = 12.0.30110.0\nMi"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/local_lat/local_lat.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/local_lat/local_lat.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/local_thr/local_thr.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/local_thr/local_thr.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/remote_lat/remote_lat.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/remote_lat/remote_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/remote_thr/remote_thr.props",
    "chars": 1980,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2013/remote_thr/remote_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/inproc_lat/inproc_lat.props",
    "chars": 1979,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/inproc_lat/inproc_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/inproc_thr/inproc_thr.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/inproc_thr/inproc_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libsodium.import.props",
    "chars": 3044,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libsodium.import.xml",
    "chars": 985,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq/libzmq.props",
    "chars": 4177,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq/libzmq.vcxproj",
    "chars": 14768,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsof"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq/libzmq.vcxproj.filters",
    "chars": 21229,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq/libzmq.xml",
    "chars": 2093,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq.import.props",
    "chars": 3548,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq.import.xml",
    "chars": 2461,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/libzmq.sln",
    "chars": 16058,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 14\nVisualStudioVersion = 14.0.23107.0\nMini"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/local_lat/local_lat.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/local_lat/local_lat.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/local_thr/local_thr.props",
    "chars": 1977,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/local_thr/local_thr.vcxproj",
    "chars": 3270,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/remote_lat/remote_lat.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/remote_lat/remote_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/remote_thr/remote_thr.props",
    "chars": 1980,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2015/remote_thr/remote_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2015_xp/libzmq.vcxproj",
    "chars": 13459,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project DefaultTargets=\"Build\" ToolsVersion=\"14.0\" xmlns=\"http://schemas.micros"
  },
  {
    "path": "builds/deprecated-msvc/vs2015_xp/platform.hpp",
    "chars": 285,
    "preview": "#ifndef __PLATFORM_HPP_INCLUDED__\n#define __PLATFORM_HPP_INCLUDED__\n\n#define ZMQ_HAVE_WINDOWS\n#define ZMQ_HAVE_WINDOWS_T"
  },
  {
    "path": "builds/deprecated-msvc/vs2015_xp/test_zmq/test_multithread.cpp",
    "chars": 7225,
    "preview": "/*\r\nServer thread listen ZMQ_SERVER socket and transfer incoming message \r\nto worker threads by ZMQ_PUSH-ZMQ_PULL\r\nWork"
  },
  {
    "path": "builds/deprecated-msvc/vs2015_xp/test_zmq/test_zmq.vcxproj",
    "chars": 7894,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project DefaultTargets=\"Build\" ToolsVersion=\"14.0\" xmlns=\"http://schemas.micro"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/inproc_lat/inproc_lat.props",
    "chars": 1979,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/inproc_lat/inproc_lat.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/inproc_thr/inproc_thr.props",
    "chars": 1978,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/inproc_thr/inproc_thr.vcxproj",
    "chars": 3272,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microso"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/libsodium.import.props",
    "chars": 3044,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/libsodium.import.xml",
    "chars": 985,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ProjectSchemaDefinitions xmlns=\"clr-namespace:Microsoft.Build.Framework.XamlType"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/libzmq/libzmq.props",
    "chars": 4177,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/ms"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/libzmq/libzmq.vcxproj",
    "chars": 14648,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsof"
  },
  {
    "path": "builds/deprecated-msvc/vs2017/libzmq/libzmq.vcxproj.filters",
    "chars": 21229,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
  }
]

// ... and 619 more files (download for full content)

About this extraction

This page contains the full source code of the zeromq/libzmq GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 819 files (4.3 MB), approximately 1.2M tokens, and a symbol index with 2555 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!