options.hpp 4.3 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
3 4 5 6

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
8 9 10 11 12 13
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    0MQ is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU Lesser General Public License for more details.
15

16
    You should have received a copy of the GNU Lesser General Public License
17 18 19 20 21 22
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __ZMQ_OPTIONS_HPP_INCLUDED__
#define __ZMQ_OPTIONS_HPP_INCLUDED__

23
#include <string>
24
#include <vector>
25

26
#include "stddef.h"
unknown's avatar
unknown committed
27
#include "stdint.hpp"
28
#include "tcp_address.hpp"
29
#include "../include/zmq.h"
unknown's avatar
unknown committed
30

Pieter Hintjens's avatar
Pieter Hintjens committed
31 32 33 34
//  Normal base 256 key is 32 bytes
#define CURVE_KEYSIZE       32
//  Key encoded using Z85 is 40 bytes
#define CURVE_KEYSIZE_Z85   40
35

36 37 38 39 40 41
namespace zmq
{
    struct options_t
    {
        options_t ();

42
        int setsockopt (int option_, const void *optval_, size_t optvallen_);
43
        int getsockopt (int option_, void *optval_, size_t *optvallen_);
44

45 46 47
        //  High-water marks for message pipes.
        int sndhwm;
        int rcvhwm;
48

49
        //  I/O thread affinity.
50
        uint64_t affinity;
malosek's avatar
malosek committed
51

52 53 54
        //  Socket identity
        unsigned char identity_size;
        unsigned char identity [256];
55

56
        //  Maximum transfer rate [kb/s]. Default 100kb/s.
57
        int rate;
malosek's avatar
malosek committed
58

59
        //  Reliability time interval [ms]. Default 10 seconds.
60
        int recovery_ivl;
61

62 63 64
        // Sets the time-to-live field in every multicast packet sent.
        int multicast_hops;

65 66 67
        // SO_SNDBUF and SO_RCVBUF to be passed to underlying transport sockets.
        int sndbuf;
        int rcvbuf;
68

69 70 71
        //  Socket type.
        int type;

72 73 74
        //  Linger time, in milliseconds.
        int linger;

75 76
        //  Minimum interval between attempts to reconnect, in milliseconds.
        //  Default 100ms
77
        int reconnect_ivl;
78

79 80 81
        //  Maximum interval between attempts to reconnect, in milliseconds.
        //  Default 0 (unused)
        int reconnect_ivl_max;
82

83 84 85
        //  Maximum backlog for pending connections.
        int backlog;

86 87 88
        //  Maximal size of message to handle.
        int64_t maxmsgsize;

89 90 91 92
        // The timeout for send/recv operations for this socket.
        int rcvtimeo;
        int sndtimeo;

Pieter Hintjens's avatar
Pieter Hintjens committed
93 94
        //  If true, IPv6 is enabled (as well as IPv4)
        bool ipv6;
95

96 97
        //  If 1, connecting pipes are not attached immediately, meaning a send()
        //  on a socket with only connecting pipes would block
98
        int immediate;
Steven McCoy's avatar
Steven McCoy committed
99

100 101
        //  If 1, (X)SUB socket should filter the messages. If 0, it should not.
        bool filter;
102

103
        //  If true, the identity message is forwarded to the socket.
104
        bool recv_identity;
Martin Hurton's avatar
Martin Hurton committed
105

106 107
        // if true, router socket accepts non-zmq tcp connections
        bool raw_sock;
108 109 110 111 112 113 114 115

        //  TCP keep-alive settings.
        //  Defaults to -1 = do not change socket options
        int tcp_keepalive;
        int tcp_keepalive_cnt;
        int tcp_keepalive_idle;
        int tcp_keepalive_intvl;

116 117 118 119
        // TCP accept() filters
        typedef std::vector <tcp_address_mask_t> tcp_accept_filters_t;
        tcp_accept_filters_t tcp_accept_filters;

120 121
        //  Security mechanism for all connections on this socket
        int mechanism;
122

123
        //  If peer is acting as server for PLAIN or CURVE mechanisms
124 125 126 127 128
        int as_server;

        //  ZAP authentication domain
        std::string zap_domain;

129 130 131 132
        //  Security credentials for PLAIN mechanism
        std::string plain_username;
        std::string plain_password;

133
        //  Security credentials for CURVE mechanism
134 135 136
        uint8_t curve_public_key [CURVE_KEYSIZE];
        uint8_t curve_secret_key [CURVE_KEYSIZE];
        uint8_t curve_server_key [CURVE_KEYSIZE];
137

138 139
        //  ID of the socket.
        int socket_id;
danielkr's avatar
danielkr committed
140 141 142 143 144 145

        //  If true, socket conflates outgoing/incoming messages.
        //  Applicable to dealer, push/pull, pub/sub socket types.
        //  Cannot receive multi-part messages.
        //  Ignores hwm
        bool conflate;
146 147 148 149
    };
}

#endif