123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
|
module tango.sys.linux.consts.socket;
import tango.sys.linux.consts.fcntl: F_GETFL, F_SETFL,O_NONBLOCK;
enum {SOCKET_ERROR = -1}
enum
{
SO_DEBUG = 1 , /* turn on debugging info recording */
SO_BROADCAST = 6 , /* permit sending of broadcast msgs */
SO_REUSEADDR = 2 , /* allow local address reuse */
SO_LINGER = 13 , /* linger on close if data present */
SO_DONTLINGER = ~(13),
SO_OOBINLINE = 10 , /* leave received OOB data in line */
SO_ACCEPTCONN = 30, /* socket has had listen() */
SO_KEEPALIVE = 9 , /* keep connections alive */
SO_DONTROUTE = 5 , /* just use interface addresses */
SO_TYPE = 3 , /* get socket type */
/*
* Additional options, not kept in so_options.
*/
SO_SNDBUF = 7, /* send buffer size */
SO_RCVBUF = 8, /* receive buffer size */
SO_ERROR = 4 , /* get error status and clear */
// OptionLevel.IP settings
IP_MULTICAST_TTL = 33 ,
IP_MULTICAST_LOOP = 34 ,
IP_ADD_MEMBERSHIP = 35 ,
IP_DROP_MEMBERSHIP = 36,
// OptionLevel.TCP settings
TCP_NODELAY = 1 ,
}
enum
{
SOL_SOCKET = 1,
}
enum {
SOCK_STREAM = 1 , /++ sequential, reliable +/
SOCK_DGRAM = 2 , /++ connectionless unreliable, max length +/
SOCK_SEQPACKET = 5, /++ sequential, reliable, max length +/
SOCK_RAW = 3 , /++ raw protocol +/
SOCK_RDM = 4 , /++ reliable messages +/
SOCK_PACKET = 10, /++ linux specific packets at dev level +/
}
/* Standard well-defined IP protocols. */
enum
{
IPPROTO_IP = 0, /* Dummy protocol for TCP. */
IPPROTO_IPV4 = 0, /* Dummy protocol for TCP. */
IPPROTO_IPV6 = 41, /* IPv6 header. */
IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
IPPROTO_TCP = 6, /* Transmission Control Protocol. */
IPPROTO_PUP = 12, /* PUP protocol. */
IPPROTO_UDP = 17, /* User Datagram Protocol. */
IPPROTO_IDP = 22, /* XNS IDP protocol. */
/+
// undefined for cross platform reasons, if you need some of these ask
IPPROTO_HOPOPTS = 0, /* IPv6 Hop-by-Hop options. */
IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
IPPROTO_ROUTING = 43, /* IPv6 routing header. */
IPPROTO_FRAGMENT = 44, /* IPv6 fragmentation header. */
IPPROTO_RSVP = 46, /* Reservation Protocol. */
IPPROTO_GRE = 47, /* General Routing Encapsulation. */
IPPROTO_ESP = 50, /* encapsulating security payload. */
IPPROTO_AH = 51, /* authentication header. */
IPPROTO_ICMPV6 = 58, /* ICMPv6. */
IPPROTO_NONE = 59, /* IPv6 no next header. */
IPPROTO_DSTOPTS = 60, /* IPv6 destination options. */
IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
IPPROTO_ENCAP = 98, /* Encapsulation Header. */
IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
IPPROTO_COMP = 108, /* Compression Header Protocol. */
IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
IPPROTO_RAW = 255, /* Raw IP packets. */
IPPROTO_MAX +/
}
enum
{
AF_UNSPEC = 0 ,
AF_UNIX = 1 ,
AF_INET = 2 ,
AF_IPX = 4 ,
AF_APPLETALK = 5 ,
AF_INET6 = 10 ,
}
enum : uint
{
SCM_RIGHTS = 0x01
}
enum
{
SOMAXCONN = 128,
}
enum : uint
{
MSG_CTRUNC = 0x08,
MSG_DONTROUTE = 0x04,
MSG_EOR = 0x80,
MSG_OOB = 0x01,
MSG_PEEK = 0x02,
MSG_TRUNC = 0x20,
MSG_WAITALL = 0x100
}
/* The following constants should be used for the second parameter of
`shutdown'. */
enum
{
SHUT_RD = 0, /* No more receptions. */
SHUT_WR, /* No more transmissions. */
SHUT_RDWR /* No more receptions or transmissions. */
}
enum: int
{
AI_PASSIVE = 0x0001, /// Socket address is intended for `bind'
AI_CANONNAME = 0x0002, /// Request for canonical name.
AI_NUMERICHOST = 0x0004, /// Don't use name resolution.
AI_V4MAPPED = 0x0008, /// IPv4 mapped addresses are acceptable.
AI_ALL = 0x0010, /// Return IPv4 mapped and IPv6 addresses.
AI_ADDRCONFIG = 0x0020, /// Use configuration of this host to choose returned address type.
AI_NUMERICSERV = 0x0400, /// Don't use name resolution.
AI_MASK = (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_NUMERICSERV | AI_ADDRCONFIG),
AI_DEFAULT = (AI_V4MAPPED | AI_ADDRCONFIG),
}
enum
{
EAI_BADFLAGS = -1, /// Invalid value for `ai_flags' field.
EAI_NONAME = -2, /// NAME or SERVICE is unknown.
EAI_AGAIN = -3, /// Temporary failure in name resolution.
EAI_FAIL = -4, /// Non-recoverable failure in name res.
EAI_NODATA = -5, /// No address associated with NAME.
EAI_FAMILY = -6, /// `ai_family' not supported.
EAI_SOCKTYPE = -7, /// `ai_socktype' not supported.
EAI_SERVICE = -8, /// SERVICE not supported for `ai_socktype'.
EAI_MEMORY = -10, /// Memory allocation failure.
}
enum
{
NI_MAXHOST = 1025,
NI_MAXSERV = 32,
NI_NUMERICHOST = 1, /// Don't try to look up hostname.
NI_NUMERICSERV = 2, /// Don't convert port number to name.
NI_NOFQDN = 4, /// Only return nodename portion.
NI_NAMEREQD = 8, /// Don't return numeric addresses.
NI_DGRAM = 16, /// Look up UDP service rather than TCP.
}
// non cross platform.
/+
/* Bits in the FLAGS argument to `send', `recv', et al. */
enum :uint
{
MSG_PROXY = 0x10, /* Supply or ask second address. */
MSG_DONTWAIT = 0x40, /* Nonblocking IO. */
MSG_WAITALL = 0x100, /* Wait for a full request. */
MSG_FIN = 0x200,
MSG_SYN = 0x400,
MSG_CONFIRM = 0x800, /* Confirm path validity. */
MSG_RST = 0x1000,
MSG_ERRQUEUE = 0x2000, /* Fetch message from error queue. */
MSG_NOSIGNAL = 0x4000, /* Do not generate SIGPIPE. */
MSG_MORE = 0x8000, /* Sender will send more. */
MSG_CMSG_CLOEXEC = 0x40000000 /* Set close_on_exit for file
descriptor received through
SCM_RIGHTS. */
}
/* Standard well-known ports. */
enum
{
IPPORT_ECHO = 7, /* Echo service. */
IPPORT_DISCARD = 9, /* Discard transmissions service. */
IPPORT_SYSTAT = 11, /* System status service. */
IPPORT_DAYTIME = 13, /* Time of day service. */
IPPORT_NETSTAT = 15, /* Network status service. */
IPPORT_FTP = 21, /* File Transfer Protocol. */
IPPORT_TELNET = 23, /* Telnet protocol. */
IPPORT_SMTP = 25, /* Simple Mail Transfer Protocol. */
IPPORT_TIMESERVER = 37, /* Timeserver service. */
IPPORT_NAMESERVER = 42, /* Domain Name Service. */
IPPORT_WHOIS = 43, /* Internet Whois service. */
IPPORT_MTP = 57,
IPPORT_TFTP = 69, /* Trivial File Transfer Protocol. */
IPPORT_RJE = 77,
IPPORT_FINGER = 79, /* Finger service. */
IPPORT_TTYLINK = 87,
IPPORT_SUPDUP = 95, /* SUPDUP protocol. */
IPPORT_EXECSERVER = 512, /* execd service. */
IPPORT_LOGINSERVER = 513, /* rlogind service. */
IPPORT_CMDSERVER = 514,
IPPORT_EFSSERVER = 520,
/* UDP ports. */
IPPORT_BIFFUDP = 512,
IPPORT_WHOSERVER = 513,
IPPORT_ROUTESERVER = 520,
/* Ports less than this value are reserved for privileged processes. */
IPPORT_RESERVED = 1024,
/* Ports greater this value are reserved for (non-privileged) servers. */
IPPORT_USERRESERVED = 5000
}
enum
{
TCP_ESTABLISHED = 1,
TCP_SYN_SENT,
TCP_SYN_RECV,
TCP_FIN_WAIT1,
TCP_FIN_WAIT2,
TCP_TIME_WAIT,
TCP_CLOSE,
TCP_CLOSE_WAIT,
TCP_LAST_ACK,
TCP_LISTEN,
TCP_CLOSING /* now a valid state */
} +/
|