18 #ifndef _DECAF_NET_SOCKETOPTIONS_H_ 19 #define _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'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