|
@@ -129,8 +129,156 @@ Const
|
|
SCM_TIMESTAMP = SO_TIMESTAMP;
|
|
SCM_TIMESTAMP = SO_TIMESTAMP;
|
|
SO_ACCEPTCONN = 30;
|
|
SO_ACCEPTCONN = 30;
|
|
|
|
|
|
|
|
+// Following from kernel 2.6.14-1.1637_FC4
|
|
|
|
|
|
- SHUT_RD =0; { shut down the reading side }
|
|
|
|
- SHUT_WR =1; { shut down the writing side }
|
|
|
|
- SHUT_RDWR =2; { shut down both sides }
|
|
|
|
|
|
+ SHUT_RD = 0; { shut down the reading side }
|
|
|
|
+ SHUT_WR = 1; { shut down the writing side }
|
|
|
|
+ SHUT_RDWR = 2; { shut down both sides }
|
|
|
|
|
|
|
|
+//from /usr/include/netinet/in.h
|
|
|
|
+
|
|
|
|
+ IPPROTO_IP = 0; { Dummy protocol for TCP. }
|
|
|
|
+ IPPROTO_HOPOPTS = 0; { IPv6 Hop-by-Hop options. }
|
|
|
|
+
|
|
|
|
+ IPPROTO_ICMP = 1; { Internet Control Message Protocol. }
|
|
|
|
+ IPPROTO_IGMP = 2; { Internet Group Management Protocol. }
|
|
|
|
+ IPPROTO_IPIP = 4; { IPIP tunnels (older KA9Q tunnels use 94). }
|
|
|
|
+ IPPROTO_TCP = 6; { Transmission Control Protocol. }
|
|
|
|
+ IPPROTO_EGP = 8; { Exterior Gateway Protocol. }
|
|
|
|
+
|
|
|
|
+ IPPROTO_PUP = 12; { PUP protocol. }
|
|
|
|
+ IPPROTO_UDP = 17; { User Datagram Protocol. }
|
|
|
|
+ IPPROTO_IDP = 22; { XNS IDP protocol. }
|
|
|
|
+ IPPROTO_TP = 29; { SO Transport Protocol Class 4. }
|
|
|
|
+ IPPROTO_IPV6 = 41; { IPv6 header. }
|
|
|
|
+
|
|
|
|
+ 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 = 255;
|
|
|
|
+//from /usr/include/bits/in.h
|
|
|
|
+{/* Options for use with etsockopt' and etsockopt' at the IP level.
|
|
|
|
+ The first word in the comment at the right is the data type used;
|
|
|
|
+ "bool" means a boolean value stored in an nt'. */
|
|
|
|
+}
|
|
|
|
+ IP_OPTIONS = 4; { ip_opts; IP per-packet options. }
|
|
|
|
+ IP_HDRINCL = 3; { int; Header is included with data. }
|
|
|
|
+ IP_TOS = 1; { int; IP type of service and precedence. }
|
|
|
|
+ IP_TTL = 2; { int; IP time to live. }
|
|
|
|
+ IP_RECVOPTS = 6; { bool; Receive all IP options w/datagram. }
|
|
|
|
+{ For BSD compatibility. }
|
|
|
|
+ IP_RETOPTS = 7; { ip_opts; Set/get IP per-packet options. }
|
|
|
|
+ IP_RECVRETOPTS = IP_RETOPTS; { bool; Receive IP options for response. }
|
|
|
|
+
|
|
|
|
+ IP_MULTICAST_IF = 32; { in_addr; set/get IP multicast i/f }
|
|
|
|
+ IP_MULTICAST_TTL = 33; { u_char; set/get IP multicast ttl }
|
|
|
|
+ IP_MULTICAST_LOOP = 34; { i_char; set/get IP multicast loopback }
|
|
|
|
+ IP_ADD_MEMBERSHIP = 35; { ip_mreq; add an IP group membership }
|
|
|
|
+ IP_DROP_MEMBERSHIP = 36; { ip_mreq; drop an IP group membership }
|
|
|
|
+ IP_UNBLOCK_SOURCE = 37; { ip_mreq_source: unblock data from source }
|
|
|
|
+ IP_BLOCK_SOURCE = 38; { ip_mreq_source: block data from source }
|
|
|
|
+ IP_ADD_SOURCE_MEMBERSHIP = 39; { ip_mreq_source: join source group }
|
|
|
|
+ IP_DROP_SOURCE_MEMBERSHIP = 40; { ip_mreq_source: leave source group }
|
|
|
|
+ IP_MSFILTER = 41;
|
|
|
|
+ MCAST_JOIN_GROUP = 42; { group_req: join any-source group }
|
|
|
|
+ MCAST_BLOCK_SOURCE = 43; { group_source_req: block from given group }
|
|
|
|
+ MCAST_UNBLOCK_SOURCE = 44; { group_source_req: unblock from given group}
|
|
|
|
+ MCAST_LEAVE_GROUP = 45; { group_req: leave any-source group }
|
|
|
|
+ MCAST_JOIN_SOURCE_GROUP = 46; { group_source_req: join source-spec gr }
|
|
|
|
+ MCAST_LEAVE_SOURCE_GROUP = 47; { group_source_req: leave source-spec gr}
|
|
|
|
+ MCAST_MSFILTER = 48;
|
|
|
|
+
|
|
|
|
+ MCAST_EXCLUDE = 0;
|
|
|
|
+ MCAST_INCLUDE = 1;
|
|
|
|
+
|
|
|
|
+ IP_ROUTER_ALERT = 5; { bool }
|
|
|
|
+ IP_PKTINFO = 8; { bool }
|
|
|
|
+ IP_PKTOPTIONS = 9;
|
|
|
|
+ IP_PMTUDISC = 10; { obsolete name? }
|
|
|
|
+ IP_MTU_DISCOVER = 10; { int; see below }
|
|
|
|
+ IP_RECVERR = 11; { bool }
|
|
|
|
+ IP_RECVTTL = 12; { bool }
|
|
|
|
+ IP_RECVTOS = 13; { bool }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+{ IP_MTU_DISCOVER arguments. }
|
|
|
|
+ IP_PMTUDISC_DONT = 0; { Never send DF frames. }
|
|
|
|
+ IP_PMTUDISC_WANT = 1; { Use per route hints. }
|
|
|
|
+ IP_PMTUDISC_DO = 2; { Always DF. }
|
|
|
|
+
|
|
|
|
+{ To select the IP level. }
|
|
|
|
+ SOL_IP = 0;
|
|
|
|
+
|
|
|
|
+ IP_DEFAULT_MULTICAST_TTL = 1;
|
|
|
|
+ IP_DEFAULT_MULTICAST_LOOP = 1;
|
|
|
|
+ IP_MAX_MEMBERSHIPS = 20;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+{ Options for use with etsockopt' and etsockopt' at the IPv6 level.
|
|
|
|
+ The first word in the comment at the right is the data type used;
|
|
|
|
+ "bool" means a boolean value stored in an nt'. }
|
|
|
|
+ IPV6_ADDRFORM = 1;
|
|
|
|
+ IPV6_PKTINFO = 2;
|
|
|
|
+ IPV6_HOPOPTS = 3;
|
|
|
|
+ IPV6_DSTOPTS = 4;
|
|
|
|
+ IPV6_RTHDR = 5;
|
|
|
|
+ IPV6_RXSRCRT = IPV6_RTHDR;
|
|
|
|
+ //this may be an old name, I couldn't find it in my include files but
|
|
|
|
+ //I found it with google. It may have been depreciated because I only
|
|
|
|
+ //saw it in earlier files.
|
|
|
|
+ IPV6_PKTOPTIONS = 6;
|
|
|
|
+ IPV6_CHECKSUM = 7;
|
|
|
|
+ IPV6_HOPLIMIT = 8;
|
|
|
|
+
|
|
|
|
+ SCM_SRCRT = IPV6_RXSRCRT;
|
|
|
|
+
|
|
|
|
+ IPV6_NEXTHOP = 9;
|
|
|
|
+ IPV6_AUTHHDR = 10;
|
|
|
|
+ IPV6_UNICAST_HOPS = 16;
|
|
|
|
+ IPV6_MULTICAST_IF = 17;
|
|
|
|
+ IPV6_MULTICAST_HOPS = 18;
|
|
|
|
+ IPV6_MULTICAST_LOOP = 19;
|
|
|
|
+ IPV6_JOIN_GROUP = 20;
|
|
|
|
+ IPV6_LEAVE_GROUP = 21;
|
|
|
|
+ IPV6_ROUTER_ALERT = 22;
|
|
|
|
+ IPV6_MTU_DISCOVER = 23;
|
|
|
|
+ IPV6_MTU = 24;
|
|
|
|
+ IPV6_RECVERR = 25;
|
|
|
|
+ IPV6_V6ONLY = 26;
|
|
|
|
+ IPV6_JOIN_ANYCAST = 27;
|
|
|
|
+ IPV6_LEAVE_ANYCAST = 28;
|
|
|
|
+ IPV6_IPSEC_POLICY = 34;
|
|
|
|
+ IPV6_XFRM_POLICY = 35;
|
|
|
|
+
|
|
|
|
+{ Obsolete synonyms for the above. }
|
|
|
|
+ IPV6_ADD_MEMBERSHIP = IPV6_JOIN_GROUP;
|
|
|
|
+ IPV6_DROP_MEMBERSHIP = IPV6_LEAVE_GROUP;
|
|
|
|
+ IPV6_RXHOPOPTS = IPV6_HOPOPTS;
|
|
|
|
+ IPV6_RXDSTOPTS = IPV6_DSTOPTS;
|
|
|
|
+
|
|
|
|
+{ IPV6_MTU_DISCOVER values. }
|
|
|
|
+ IPV6_PMTUDISC_DONT = 0; { Never send DF frames. }
|
|
|
|
+ IPV6_PMTUDISC_WANT = 1; { Use per route hints. }
|
|
|
|
+ IPV6_PMTUDISC_DO = 2; { Always DF. }
|
|
|
|
+
|
|
|
|
+{ Socket level values for IPv6. }
|
|
|
|
+ SOL_IPV6 = 41;
|
|
|
|
+ SOL_ICMPV6 = 58;
|
|
|
|
+
|
|
|
|
+{ Routing header options for IPv6. }
|
|
|
|
+ IPV6_RTHDR_LOOSE = 0; { Hop doesn't need to be neighbour. }
|
|
|
|
+ IPV6_RTHDR_STRICT = 1; { Hop must be a neighbour. }
|
|
|
|
+
|
|
|
|
+ IPV6_RTHDR_TYPE_0 = 0; { IPv6 Routing header type 0. }
|