options.hpp 4.59 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 tranfer 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 102 103 104 105 106
        //  If true, session reads all the pending messages from the pipe and
        //  sends them to the network when socket is closed.
        bool delay_on_close;

        //  If true, socket reads all the messages from the pipe and delivers
        //  them to the user when the peer terminates.
        bool delay_on_disconnect;
107 108 109

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

111
        //  If true, the identity message is forwarded to the socket.
112
        bool recv_identity;
Martin Hurton's avatar
Martin Hurton committed
113

114 115
        // if true, router socket accepts non-zmq tcp connections
        bool raw_sock;
116 117 118 119 120 121 122 123

        //  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;

124 125 126 127
        // TCP accept() filters
        typedef std::vector <tcp_address_mask_t> tcp_accept_filters_t;
        tcp_accept_filters_t tcp_accept_filters;

128 129
        //  Security mechanism for all connections on this socket
        int mechanism;
130
        
131 132
        //  If peer is acting as server for PLAIN or CURVE mechanisms
        int as_server;          
133 134 135 136 137
        
        //  Security credentials for PLAIN mechanism
        std::string plain_username;
        std::string plain_password;

138 139 140 141
        //  Security credentials for CURVE mechanism
        uint8_t curve_public_key [CURVE_KEYSIZE];
        uint8_t curve_secret_key [CURVE_KEYSIZE];
        uint8_t curve_server_key [CURVE_KEYSIZE];
142

143 144
        //  ID of the socket.
        int socket_id;
danielkr's avatar
danielkr committed
145 146 147 148 149 150

        //  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;
151 152 153 154
    };
}

#endif