date and time created 87/11/21 14:33:27 by karels
[unix-history] / usr / src / share / man / man4 / ip.4
index 6cecebc..12453ae 100644 (file)
@@ -2,7 +2,7 @@
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
-.\"    @(#)ip.4        6.1 (Berkeley) %G%
+.\"    @(#)ip.4        6.2 (Berkeley) %G%
 .\"
 .TH IP 4P ""
 .UC 5
 .\"
 .TH IP 4P ""
 .UC 5
@@ -13,12 +13,33 @@ ip \- Internet Protocol
 .br
 .B #include <netinet/in.h>
 .PP
 .br
 .B #include <netinet/in.h>
 .PP
-.B s = socket(AF_INET, SOCK_RAW, 0);
+.B s = socket(AF_INET, SOCK_RAW, proto);
 .SH DESCRIPTION
 IP is the transport layer protocol used
 .SH DESCRIPTION
 IP is the transport layer protocol used
-by the Internet protocol family.  It may be accessed
+by the Internet protocol family.
+Options may be set at the IP level
+when using higher-level protocols that are based on IP
+(such as TCP and UDP).
+It may also be accessed
 through a \*(lqraw socket\*(rq when developing new protocols, or
 through a \*(lqraw socket\*(rq when developing new protocols, or
-special purpose applications.  IP sockets are connectionless,
+special purpose applications.
+.PP
+A single generic option is supported at the IP level, IP_OPTIONS,
+that may be used to provide IP options to be transmitted in the IP
+header of each outgoing packet.
+Options are set with
+.IR setsockopt (2)
+and examined with
+.IR getsockopt (2).
+The format of IP options to be sent is that specified by the IP protocol
+specification, with one exception:
+the list of addresses for Source Route options must include the first-hop
+gateway at the beginning of the list of gateways.
+The first-hop gateway address will be extracted from the option list
+and the size adjusted accordingly before use.
+IP options may be used with any socket type in the Internet family.
+.PP
+Raw IP sockets are connectionless,
 and are normally used with the
 .I sendto 
 and
 and are normally used with the
 .I sendto 
 and
@@ -36,11 +57,20 @@ or
 .IR send (2)
 system calls may be used).
 .PP
 .IR send (2)
 system calls may be used).
 .PP
+If
+.I proto
+is 0, the default protocol IPPROTO_RAW is used for outgoing
+packets, and only incoming packets destined for that protocol
+are received.
+If
+.I proto
+is non-zero, that protocol number will be used on outgoing packets
+and to filter incoming packets.
+.PP
 Outgoing packets automatically have an IP header prepended to
 them (based on the destination address and the protocol
 number the socket is created with).
 Outgoing packets automatically have an IP header prepended to
 them (based on the destination address and the protocol
 number the socket is created with).
-Likewise, incoming packets have their IP header stripped
-before being sent to the user.
+Incoming packets are received with IP header and options intact.
 .SH DIAGNOSTICS
 A socket operation may fail with one of the following errors returned:
 .TP 15
 .SH DIAGNOSTICS
 A socket operation may fail with one of the following errors returned:
 .TP 15
@@ -62,9 +92,16 @@ an internal data structure;
 when an attempt is made to create a 
 socket with a network address for which no network interface
 exists.
 when an attempt is made to create a 
 socket with a network address for which no network interface
 exists.
-.SH SEE ALSO
-send(2), recv(2), intro(4N), inet(4F)
-.SH BUGS
-One should be able to send and receive ip options.
 .PP
 .PP
-The protocol should be settable after socket creation.
+The following errors specific to IP
+may occur when setting or getting IP options:
+.TP 15
+[EINVAL]
+An unknown socket option name was given.
+.TP 15
+[EINVAL]
+The IP option field was improperly formed;
+an option field was shorter than the minimum value
+or longer than the option buffer provided.
+.SH SEE ALSO
+getsockopt(2), send(2), recv(2), intro(4N), icmp(4P), inet(4F)