zmqpp  4.1.2
C++ bindings for 0mq (libzmq)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
context_options.hpp
Go to the documentation of this file.
1 /*
2  * This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * This file is part of zmqpp.
7  * Copyright (c) 2011-2015 Contributors as noted in the AUTHORS file.
8  */
9 
17 #ifndef ZMQPP_CONTEXT_OPTIONS_HPP_
18 #define ZMQPP_CONTEXT_OPTIONS_HPP_
19 
20 namespace zmqpp
21 {
22 
28 ZMQPP_COMPARABLE_ENUM context_option {
29  io_threads = ZMQ_IO_THREADS,
30  max_sockets = ZMQ_MAX_SOCKETS,
31 #if (ZMQ_VERSION_MAJOR >= 4)
32  ipv6 = ZMQ_IPV6
33 #endif
34 };
35 
36 }
37 
38 #endif /* ZMQPP_CONTEXT_OPTIONS_HPP_ */
C++ wrapper around zmq.
Definition: actor.cpp:29
ZMQPP_COMPARABLE_ENUM context_option
possible Context options in zmq
Definition: context_options.hpp:28