activemq-cpp-3.8.2
SocketOptions.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _DECAF_NET_SOCKETOPTIONS_H_
19 #define _DECAF_NET_SOCKETOPTIONS_H_
20 
21 #include <decaf/util/Config.h>
22 
23 namespace decaf {
24 namespace net {
25 
31  public:
32 
37  static const int SOCKET_OPTION_TCP_NODELAY;
38 
48  static const int SOCKET_OPTION_BINDADDR;
49 
54  static const int SOCKET_OPTION_REUSEADDR;
55 
62  static const int SOCKET_OPTION_BROADCAST;
63 
72 
79 
85 
90  static const int SOCKET_OPTION_IP_TOS;
91 
103  static const int SOCKET_OPTION_LINGER;
104 
109  static const int SOCKET_OPTION_TIMEOUT;
110 
118  static const int SOCKET_OPTION_SNDBUF;
119 
127  static const int SOCKET_OPTION_RCVBUF;
128 
142  static const int SOCKET_OPTION_KEEPALIVE;
143 
149  static const int SOCKET_OPTION_OOBINLINE;
150 
151  public:
152 
153  virtual ~SocketOptions();
154 
155  };
156 
157 }}
158 
159 #endif /* _DECAF_NET_SOCKETOPTIONS_H_ */
static const int SOCKET_OPTION_OOBINLINE
When the OOBINLINE option is set, any TCP urgent data received on the socket will be received through...
Definition: SocketOptions.h:149
static const int SOCKET_OPTION_TIMEOUT
Set a timeout on blocking Socket operations.
Definition: SocketOptions.h:109
static const int SOCKET_OPTION_BROADCAST
Sets SO_BROADCAST for a socket.
Definition: SocketOptions.h:62
static const int SOCKET_OPTION_RCVBUF
Set a hint the size of the underlying buffers used by the platform for incoming network I/O...
Definition: SocketOptions.h:127
static const int SOCKET_OPTION_LINGER
Specify a linger-on-close timeout.
Definition: SocketOptions.h:103
static const int SOCKET_OPTION_TCP_NODELAY
Disable Nagle&#39;s algorithm for this connection.
Definition: SocketOptions.h:37
Definition: SocketOptions.h:30
static const int SOCKET_OPTION_SNDBUF
Set a hint the size of the underlying buffers used by the platform for outgoing network I/O...
Definition: SocketOptions.h:118
static const int SOCKET_OPTION_IP_TOS
This option sets the type-of-service or traffic class field in the IP header for a TCP or UDP socket...
Definition: SocketOptions.h:90
static const int SOCKET_OPTION_KEEPALIVE
When the keepalive option is set for a TCP socket and no data has been exchanged across the socket in...
Definition: SocketOptions.h:142
static const int SOCKET_OPTION_IP_MULTICAST_IF2
Same as above.
Definition: SocketOptions.h:78
static const int SOCKET_OPTION_REUSEADDR
Sets SO_REUSEADDR for a socket.
Definition: SocketOptions.h:54
#define DECAF_API
Definition: Config.h:29
static const int SOCKET_OPTION_IP_MULTICAST_LOOP
This option enables or disables local loopback of multicast datagrams.
Definition: SocketOptions.h:84
static const int SOCKET_OPTION_BINDADDR
Fetch the local address binding of a socket (this option cannot be "set" only "gotten", since sockets are bound at creation time, and so the locally bound address cannot be changed).
Definition: SocketOptions.h:48
static const int SOCKET_OPTION_IP_MULTICAST_IF
Set which outgoing interface on which to send multicast packets.
Definition: SocketOptions.h:71
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements...
Definition: AprPool.h:25