xref: /freebsd/share/man/man4/ip.4 (revision ddbd069887ec2844167a19b86838d0f3a1b319fe)
1afe61c15SRodney W. Grimes.\" Copyright (c) 1983, 1991, 1993
2afe61c15SRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
3afe61c15SRodney W. Grimes.\"
4afe61c15SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
5afe61c15SRodney W. Grimes.\" modification, are permitted provided that the following conditions
6afe61c15SRodney W. Grimes.\" are met:
7afe61c15SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
8afe61c15SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
9afe61c15SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
10afe61c15SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
11afe61c15SRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12afe61c15SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software
13afe61c15SRodney W. Grimes.\"    must display the following acknowledgement:
14afe61c15SRodney W. Grimes.\"	This product includes software developed by the University of
15afe61c15SRodney W. Grimes.\"	California, Berkeley and its contributors.
16afe61c15SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
17afe61c15SRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
18afe61c15SRodney W. Grimes.\"    without specific prior written permission.
19afe61c15SRodney W. Grimes.\"
20afe61c15SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21afe61c15SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22afe61c15SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23afe61c15SRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24afe61c15SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25afe61c15SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26afe61c15SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27afe61c15SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28afe61c15SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29afe61c15SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30afe61c15SRodney W. Grimes.\" SUCH DAMAGE.
31afe61c15SRodney W. Grimes.\"
32afe61c15SRodney W. Grimes.\"     @(#)ip.4	8.2 (Berkeley) 11/30/93
33ddbd0698SBruce Evans.\"	$Id: ip.4,v 1.8 1997/02/22 13:24:34 peter Exp $
34afe61c15SRodney W. Grimes.\"
35afe61c15SRodney W. Grimes.Dd November 30, 1993
36afe61c15SRodney W. Grimes.Dt IP 4
37afe61c15SRodney W. Grimes.Os BSD 4.2
38afe61c15SRodney W. Grimes.Sh NAME
39afe61c15SRodney W. Grimes.Nm ip
40afe61c15SRodney W. Grimes.Nd Internet Protocol
41afe61c15SRodney W. Grimes.Sh SYNOPSIS
42ddbd0698SBruce Evans.Fd #include <sys/types.h>
43afe61c15SRodney W. Grimes.Fd #include <sys/socket.h>
44afe61c15SRodney W. Grimes.Fd #include <netinet/in.h>
45afe61c15SRodney W. Grimes.Ft int
46afe61c15SRodney W. Grimes.Fn socket AF_INET SOCK_RAW proto
47afe61c15SRodney W. Grimes.Sh DESCRIPTION
48afe61c15SRodney W. Grimes.Tn IP
49afe61c15SRodney W. Grimesis the transport layer protocol used
50afe61c15SRodney W. Grimesby the Internet protocol family.
51afe61c15SRodney W. GrimesOptions may be set at the
52afe61c15SRodney W. Grimes.Tn IP
53afe61c15SRodney W. Grimeslevel
54afe61c15SRodney W. Grimeswhen using higher-level protocols that are based on
55afe61c15SRodney W. Grimes.Tn IP
56afe61c15SRodney W. Grimes(such as
57afe61c15SRodney W. Grimes.Tn TCP
58afe61c15SRodney W. Grimesand
59afe61c15SRodney W. Grimes.Tn UDP ) .
60afe61c15SRodney W. GrimesIt may also be accessed
61afe61c15SRodney W. Grimesthrough a
62afe61c15SRodney W. Grimes.Dq raw socket
63afe61c15SRodney W. Grimeswhen developing new protocols, or
64afe61c15SRodney W. Grimesspecial-purpose applications.
65afe61c15SRodney W. Grimes.Pp
66afe61c15SRodney W. GrimesThere are several
67afe61c15SRodney W. Grimes.Tn IP-level
68edf0e5b3SMike Pritchard.Xr setsockopt 2
69edf0e5b3SMike Pritchardand
70afe61c15SRodney W. Grimes.Xr getsockopt 2
71afe61c15SRodney W. Grimesoptions.
72afe61c15SRodney W. Grimes.Dv IP_OPTIONS
73afe61c15SRodney W. Grimesmay be used to provide
74afe61c15SRodney W. Grimes.Tn IP
75afe61c15SRodney W. Grimesoptions to be transmitted in the
76afe61c15SRodney W. Grimes.Tn IP
77afe61c15SRodney W. Grimesheader of each outgoing packet
78afe61c15SRodney W. Grimesor to examine the header options on incoming packets.
79afe61c15SRodney W. Grimes.Tn IP
80afe61c15SRodney W. Grimesoptions may be used with any socket type in the Internet family.
81afe61c15SRodney W. GrimesThe format of
82afe61c15SRodney W. Grimes.Tn IP
83afe61c15SRodney W. Grimesoptions to be sent is that specified by the
84afe61c15SRodney W. Grimes.Tn IP
85afe61c15SRodney W. Grimesprotocol specification (RFC-791), with one exception:
86afe61c15SRodney W. Grimesthe list of addresses for Source Route options must include the first-hop
87afe61c15SRodney W. Grimesgateway at the beginning of the list of gateways.
88afe61c15SRodney W. GrimesThe first-hop gateway address will be extracted from the option list
89afe61c15SRodney W. Grimesand the size adjusted accordingly before use.
90afe61c15SRodney W. GrimesTo disable previously specified options,
91afe61c15SRodney W. Grimesuse a zero-length buffer:
92afe61c15SRodney W. Grimes.Bd -literal
93afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_OPTIONS, NULL, 0);
94afe61c15SRodney W. Grimes.Ed
95afe61c15SRodney W. Grimes.Pp
96afe61c15SRodney W. Grimes.Dv IP_TOS
97afe61c15SRodney W. Grimesand
98afe61c15SRodney W. Grimes.Dv IP_TTL
99afe61c15SRodney W. Grimesmay be used to set the type-of-service and time-to-live
100afe61c15SRodney W. Grimesfields in the
101afe61c15SRodney W. Grimes.Tn IP
102afe61c15SRodney W. Grimesheader for
103afe61c15SRodney W. Grimes.Dv SOCK_STREAM
104afe61c15SRodney W. Grimesand
105afe61c15SRodney W. Grimes.Dv SOCK_DGRAM
106afe61c15SRodney W. Grimessockets. For example,
107afe61c15SRodney W. Grimes.Bd -literal
108afe61c15SRodney W. Grimesint tos = IPTOS_LOWDELAY;       /* see <netinet/in.h> */
109afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
110afe61c15SRodney W. Grimes
111afe61c15SRodney W. Grimesint ttl = 60;                   /* max = 255 */
112afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_TTL, &ttl, sizeof(ttl));
113afe61c15SRodney W. Grimes.Ed
114afe61c15SRodney W. Grimes.Pp
115afe61c15SRodney W. GrimesIf the
116afe61c15SRodney W. Grimes.Dv IP_RECVDSTADDR
117afe61c15SRodney W. Grimesoption is enabled on a
118afe61c15SRodney W. Grimes.Dv SOCK_DGRAM
119afe61c15SRodney W. Grimessocket,
120afe61c15SRodney W. Grimesthe
121edf0e5b3SMike Pritchard.Xr recvmsg 2
122afe61c15SRodney W. Grimescall will return the destination
123afe61c15SRodney W. Grimes.Tn IP
124afe61c15SRodney W. Grimesaddress for a
125afe61c15SRodney W. Grimes.Tn UDP
126afe61c15SRodney W. Grimesdatagram.
127afe61c15SRodney W. GrimesThe msg_control field in the msghdr structure points to a buffer
128afe61c15SRodney W. Grimesthat contains a cmsghdr structure followed by the
129afe61c15SRodney W. Grimes.Tn IP
130afe61c15SRodney W. Grimesaddress.
131afe61c15SRodney W. GrimesThe cmsghdr fields have the following values:
132afe61c15SRodney W. Grimes.Bd -literal
133afe61c15SRodney W. Grimescmsg_len = sizeof(struct in_addr)
134afe61c15SRodney W. Grimescmsg_level = IPPROTO_IP
135afe61c15SRodney W. Grimescmsg_type = IP_RECVDSTADDR
136afe61c15SRodney W. Grimes.Ed
1377ee32b9fSPeter Wemm.Pp
1387ee32b9fSPeter Wemm.Dv IP_PORTRANGE
1397ee32b9fSPeter Wemmmay be used to set the port range used for selecting a local port number
1407ee32b9fSPeter Wemmon a socket with an unspecified (zero) port number. It has the following
1417ee32b9fSPeter Wemmpossible values:
1427ee32b9fSPeter Wemm.Bl -tag -width IP_PORTRANGE_DEFAULT
1437ee32b9fSPeter Wemm.It Dv IP_PORTRANGE_DEFAULT
1447ee32b9fSPeter Wemmuse the default range of values, normally
1457ee32b9fSPeter Wemm.Dv IPPORT_RESERVED
1467ee32b9fSPeter Wemmthrough
1477ee32b9fSPeter Wemm.Dv IPPORT_RESERVED .
1487ee32b9fSPeter WemmThis is adjustable through the sysctl setting:
1496a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.first
1507ee32b9fSPeter Wemmand
1516a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.last .
1527ee32b9fSPeter Wemm.It Dv IP_PORTRANGE_HIGH
1537ee32b9fSPeter Wemmuse a high range of values, normally
1547ee32b9fSPeter Wemm.Dv IPPORT_HIFIRSTAUTO
1557ee32b9fSPeter Wemmand
1567ee32b9fSPeter Wemm.Dv IPPORT_HILASTAUTO .
1577ee32b9fSPeter WemmThis is adjustable through the sysctl setting:
1586a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.hifirst
1597ee32b9fSPeter Wemmand
1606a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.hilast .
1617ee32b9fSPeter Wemm.It Dv IP_PORTRANGE_LOW
1627ee32b9fSPeter Wemmuse a low range of ports, which are normally restricted to
1637ee32b9fSPeter Wemmprivileged processes on
1647ee32b9fSPeter Wemm.Ux
1657ee32b9fSPeter Wemmsystems.  The range is normally from
1667ee32b9fSPeter Wemm.Dv IPPORT_RESERVED
1677ee32b9fSPeter Wemmdown to
1687ee32b9fSPeter Wemm.Li 1
1697ee32b9fSPeter Wemmin descending order.  This range is not sysctl configurable.
1707ee32b9fSPeter Wemm.El
171afe61c15SRodney W. Grimes.Ss "Multicast Options"
172afe61c15SRodney W. Grimes.Pp
173afe61c15SRodney W. Grimes.Tn IP
174afe61c15SRodney W. Grimesmulticasting is supported only on
175afe61c15SRodney W. Grimes.Dv AF_INET
176afe61c15SRodney W. Grimessockets of type
177afe61c15SRodney W. Grimes.Dv SOCK_DGRAM
178afe61c15SRodney W. Grimesand
179afe61c15SRodney W. Grimes.Dv SOCK_RAW,
180afe61c15SRodney W. Grimesand only on networks where the interface
181afe61c15SRodney W. Grimesdriver supports multicasting.
182afe61c15SRodney W. Grimes.Pp
183afe61c15SRodney W. GrimesThe
184afe61c15SRodney W. Grimes.Dv IP_MULTICAST_TTL
185afe61c15SRodney W. Grimesoption changes the time-to-live (TTL)
186afe61c15SRodney W. Grimesfor outgoing multicast datagrams
187afe61c15SRodney W. Grimesin order to control the scope of the multicasts:
188afe61c15SRodney W. Grimes.Bd -literal
189afe61c15SRodney W. Grimesu_char ttl;	/* range: 0 to 255, default = 1 */
190afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl));
191afe61c15SRodney W. Grimes.Ed
1920c3a1746SMike Pritchard.Pp
193afe61c15SRodney W. GrimesDatagrams with a TTL of 1 are not forwarded beyond the local network.
194afe61c15SRodney W. GrimesMulticast datagrams with a TTL of 0 will not be transmitted on any network,
195afe61c15SRodney W. Grimesbut may be delivered locally if the sending host belongs to the destination
196afe61c15SRodney W. Grimesgroup and if multicast loopback has not been disabled on the sending socket
197afe61c15SRodney W. Grimes(see below).  Multicast datagrams with TTL greater than 1 may be forwarded
198afe61c15SRodney W. Grimesto other networks if a multicast router is attached to the local network.
199afe61c15SRodney W. Grimes.Pp
200afe61c15SRodney W. GrimesFor hosts with multiple interfaces, each multicast transmission is
201afe61c15SRodney W. Grimessent from the primary network interface.
202afe61c15SRodney W. GrimesThe
203afe61c15SRodney W. Grimes.Dv IP_MULTICAST_IF
204afe61c15SRodney W. Grimesoption overrides the default for
205afe61c15SRodney W. Grimessubsequent transmissions from a given socket:
206afe61c15SRodney W. Grimes.Bd -literal
207afe61c15SRodney W. Grimesstruct in_addr addr;
208afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &addr, sizeof(addr));
209afe61c15SRodney W. Grimes.Ed
2100c3a1746SMike Pritchard.Pp
211afe61c15SRodney W. Grimeswhere "addr" is the local
212afe61c15SRodney W. Grimes.Tn IP
213afe61c15SRodney W. Grimesaddress of the desired interface or
214afe61c15SRodney W. Grimes.Dv INADDR_ANY
215afe61c15SRodney W. Grimesto specify the default interface.
216afe61c15SRodney W. GrimesAn interface's local IP address and multicast capability can
217afe61c15SRodney W. Grimesbe obtained via the
218afe61c15SRodney W. Grimes.Dv SIOCGIFCONF
219afe61c15SRodney W. Grimesand
220afe61c15SRodney W. Grimes.Dv SIOCGIFFLAGS
221afe61c15SRodney W. Grimesioctls.
222afe61c15SRodney W. GrimesNormal applications should not need to use this option.
223afe61c15SRodney W. Grimes.Pp
224afe61c15SRodney W. GrimesIf a multicast datagram is sent to a group to which the sending host itself
225afe61c15SRodney W. Grimesbelongs (on the outgoing interface), a copy of the datagram is, by default,
226afe61c15SRodney W. Grimeslooped back by the IP layer for local delivery.
227afe61c15SRodney W. GrimesThe
228afe61c15SRodney W. Grimes.Dv IP_MULTICAST_LOOP
229afe61c15SRodney W. Grimesoption gives the sender explicit control
230afe61c15SRodney W. Grimesover whether or not subsequent datagrams are looped back:
231afe61c15SRodney W. Grimes.Bd -literal
232afe61c15SRodney W. Grimesu_char loop;	/* 0 = disable, 1 = enable (default) */
233afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop));
234afe61c15SRodney W. Grimes.Ed
2350c3a1746SMike Pritchard.Pp
236afe61c15SRodney W. GrimesThis option
237afe61c15SRodney W. Grimesimproves performance for applications that may have no more than one
238afe61c15SRodney W. Grimesinstance on a single host (such as a router demon), by eliminating
239afe61c15SRodney W. Grimesthe overhead of receiving their own transmissions.  It should generally not
240afe61c15SRodney W. Grimesbe used by applications for which there may be more than one instance on a
241afe61c15SRodney W. Grimessingle host (such as a conferencing program) or for which the sender does
242afe61c15SRodney W. Grimesnot belong to the destination group (such as a time querying program).
243afe61c15SRodney W. Grimes.Pp
244afe61c15SRodney W. GrimesA multicast datagram sent with an initial TTL greater than 1 may be delivered
245afe61c15SRodney W. Grimesto the sending host on a different interface from that on which it was sent,
246afe61c15SRodney W. Grimesif the host belongs to the destination group on that other interface.  The
247afe61c15SRodney W. Grimesloopback control option has no effect on such delivery.
248afe61c15SRodney W. Grimes.Pp
249afe61c15SRodney W. GrimesA host must become a member of a multicast group before it can receive
250afe61c15SRodney W. Grimesdatagrams sent to the group.  To join a multicast group, use the
251afe61c15SRodney W. Grimes.Dv IP_ADD_MEMBERSHIP
252afe61c15SRodney W. Grimesoption:
253afe61c15SRodney W. Grimes.Bd -literal
254afe61c15SRodney W. Grimesstruct ip_mreq mreq;
255afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq));
256afe61c15SRodney W. Grimes.Ed
2570c3a1746SMike Pritchard.Pp
258afe61c15SRodney W. Grimeswhere
259afe61c15SRodney W. Grimes.Fa mreq
260afe61c15SRodney W. Grimesis the following structure:
261afe61c15SRodney W. Grimes.Bd -literal
262afe61c15SRodney W. Grimesstruct ip_mreq {
2630c3a1746SMike Pritchard    struct in_addr imr_multiaddr; /* IP multicast address of group */
2640c3a1746SMike Pritchard    struct in_addr imr_interface; /* local IP address of interface */
265afe61c15SRodney W. Grimes}
266afe61c15SRodney W. Grimes.Ed
2670c3a1746SMike Pritchard.Pp
268afe61c15SRodney W. Grimes.Dv imr_interface
269afe61c15SRodney W. Grimesshould
270afe61c15SRodney W. Grimesbe
271afe61c15SRodney W. Grimes.Dv INADDR_ANY
272afe61c15SRodney W. Grimesto choose the default multicast interface,
273afe61c15SRodney W. Grimesor the
274afe61c15SRodney W. Grimes.Tn IP
275afe61c15SRodney W. Grimesaddress of a particular multicast-capable interface if
276afe61c15SRodney W. Grimesthe host is multihomed.
277afe61c15SRodney W. GrimesMembership is associated with a single interface;
278afe61c15SRodney W. Grimesprograms running on multihomed hosts may need to
279afe61c15SRodney W. Grimesjoin the same group on more than one interface.
280afe61c15SRodney W. GrimesUp to
281afe61c15SRodney W. Grimes.Dv IP_MAX_MEMBERSHIPS
282afe61c15SRodney W. Grimes(currently 20) memberships may be added on a
283afe61c15SRodney W. Grimessingle socket.
284afe61c15SRodney W. Grimes.Pp
285afe61c15SRodney W. GrimesTo drop a membership, use:
286afe61c15SRodney W. Grimes.Bd -literal
287afe61c15SRodney W. Grimesstruct ip_mreq mreq;
288afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
289afe61c15SRodney W. Grimes.Ed
2900c3a1746SMike Pritchard.Pp
291afe61c15SRodney W. Grimeswhere
292afe61c15SRodney W. Grimes.Fa mreq
293afe61c15SRodney W. Grimescontains the same values as used to add the membership.
294afe61c15SRodney W. GrimesMemberships are dropped when the socket is closed or the process exits.
295afe61c15SRodney W. Grimes.\"-----------------------
296afe61c15SRodney W. Grimes.Ss "Raw IP Sockets"
297afe61c15SRodney W. Grimes.Pp
298afe61c15SRodney W. GrimesRaw
299afe61c15SRodney W. Grimes.Tn IP
300afe61c15SRodney W. Grimessockets are connectionless,
301afe61c15SRodney W. Grimesand are normally used with the
302edf0e5b3SMike Pritchard.Xr sendto 2
303afe61c15SRodney W. Grimesand
304edf0e5b3SMike Pritchard.Xr recvfrom 2
305afe61c15SRodney W. Grimescalls, though the
306afe61c15SRodney W. Grimes.Xr connect 2
307afe61c15SRodney W. Grimescall may also be used to fix the destination for future
308afe61c15SRodney W. Grimespackets (in which case the
309afe61c15SRodney W. Grimes.Xr read 2
310afe61c15SRodney W. Grimesor
311afe61c15SRodney W. Grimes.Xr recv 2
312afe61c15SRodney W. Grimesand
313afe61c15SRodney W. Grimes.Xr write 2
314afe61c15SRodney W. Grimesor
315afe61c15SRodney W. Grimes.Xr send 2
316afe61c15SRodney W. Grimessystem calls may be used).
317afe61c15SRodney W. Grimes.Pp
318afe61c15SRodney W. GrimesIf
319afe61c15SRodney W. Grimes.Fa proto
320afe61c15SRodney W. Grimesis 0, the default protocol
321afe61c15SRodney W. Grimes.Dv IPPROTO_RAW
322afe61c15SRodney W. Grimesis used for outgoing
323afe61c15SRodney W. Grimespackets, and only incoming packets destined for that protocol
324afe61c15SRodney W. Grimesare received.
325afe61c15SRodney W. GrimesIf
326afe61c15SRodney W. Grimes.Fa proto
327afe61c15SRodney W. Grimesis non-zero, that protocol number will be used on outgoing packets
328afe61c15SRodney W. Grimesand to filter incoming packets.
329afe61c15SRodney W. Grimes.Pp
330afe61c15SRodney W. GrimesOutgoing packets automatically have an
331afe61c15SRodney W. Grimes.Tn IP
332afe61c15SRodney W. Grimesheader prepended to
333afe61c15SRodney W. Grimesthem (based on the destination address and the protocol
334afe61c15SRodney W. Grimesnumber the socket is created with),
335afe61c15SRodney W. Grimesunless the
336afe61c15SRodney W. Grimes.Dv IP_HDRINCL
337afe61c15SRodney W. Grimesoption has been set.
338afe61c15SRodney W. GrimesIncoming packets are received with
339afe61c15SRodney W. Grimes.Tn IP
340afe61c15SRodney W. Grimesheader and options intact.
341afe61c15SRodney W. Grimes.Pp
342afe61c15SRodney W. Grimes.Dv IP_HDRINCL
343afe61c15SRodney W. Grimesindicates the complete IP header is included with the data
344afe61c15SRodney W. Grimesand may be used only with the
345afe61c15SRodney W. Grimes.Dv SOCK_RAW
346afe61c15SRodney W. Grimestype.
347afe61c15SRodney W. Grimes.Bd -literal
348ddbd0698SBruce Evans#include <netinet/in_systm.h>
349afe61c15SRodney W. Grimes#include <netinet/ip.h>
350afe61c15SRodney W. Grimes
351afe61c15SRodney W. Grimesint hincl = 1;                  /* 1 = on, 0 = off */
352afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_HDRINCL, &hincl, sizeof(hincl));
353afe61c15SRodney W. Grimes.Ed
3540c3a1746SMike Pritchard.Pp
355afe61c15SRodney W. GrimesUnlike previous
356afe61c15SRodney W. Grimes.Tn BSD
357afe61c15SRodney W. Grimesreleases, the program must set all
358afe61c15SRodney W. Grimesthe fields of the IP header, including the following:
359afe61c15SRodney W. Grimes.Bd -literal
360afe61c15SRodney W. Grimesip->ip_v = IPVERSION;
361afe61c15SRodney W. Grimesip->ip_hl = hlen >> 2;
362afe61c15SRodney W. Grimesip->ip_id = 0;  /* 0 means kernel set appropriate value */
363afe61c15SRodney W. Grimesip->ip_off = offset;
364afe61c15SRodney W. Grimes.Ed
3650c3a1746SMike Pritchard.Pp
366afe61c15SRodney W. GrimesIf the header source address is set to
367afe61c15SRodney W. Grimes.Dv INADDR_ANY,
368afe61c15SRodney W. Grimesthe kernel will choose an appropriate address.
369afe61c15SRodney W. Grimes.Sh DIAGNOSTICS
370afe61c15SRodney W. GrimesA socket operation may fail with one of the following errors returned:
371afe61c15SRodney W. Grimes.Bl -tag -width [EADDRNOTAVAIL]
372afe61c15SRodney W. Grimes.It Bq Er EISCONN
373afe61c15SRodney W. Grimeswhen trying to establish a connection on a socket which
374afe61c15SRodney W. Grimesalready has one, or when trying to send a datagram with the destination
375afe61c15SRodney W. Grimesaddress specified and the socket is already connected;
376afe61c15SRodney W. Grimes.It Bq Er ENOTCONN
377afe61c15SRodney W. Grimeswhen trying to send a datagram, but
378afe61c15SRodney W. Grimesno destination address is specified, and the socket hasn't been
379afe61c15SRodney W. Grimesconnected;
380afe61c15SRodney W. Grimes.It Bq Er ENOBUFS
381afe61c15SRodney W. Grimeswhen the system runs out of memory for
382afe61c15SRodney W. Grimesan internal data structure;
383afe61c15SRodney W. Grimes.It Bq Er EADDRNOTAVAIL
384afe61c15SRodney W. Grimeswhen an attempt is made to create a
385afe61c15SRodney W. Grimessocket with a network address for which no network interface
386afe61c15SRodney W. Grimesexists.
387afe61c15SRodney W. Grimes.It Bq Er EACESS
388afe61c15SRodney W. Grimeswhen an attempt is made to create
389afe61c15SRodney W. Grimesa raw IP socket by a non-privileged process.
390afe61c15SRodney W. Grimes.El
391afe61c15SRodney W. Grimes.Pp
392afe61c15SRodney W. GrimesThe following errors specific to
393afe61c15SRodney W. Grimes.Tn IP
394afe61c15SRodney W. Grimesmay occur when setting or getting
395afe61c15SRodney W. Grimes.Tn IP
396afe61c15SRodney W. Grimesoptions:
397afe61c15SRodney W. Grimes.Bl -tag -width EADDRNOTAVAILxx
398afe61c15SRodney W. Grimes.It Bq Er EINVAL
399afe61c15SRodney W. GrimesAn unknown socket option name was given.
400afe61c15SRodney W. Grimes.It Bq Er EINVAL
401afe61c15SRodney W. GrimesThe IP option field was improperly formed;
402afe61c15SRodney W. Grimesan option field was shorter than the minimum value
403afe61c15SRodney W. Grimesor longer than the option buffer provided.
404afe61c15SRodney W. Grimes.El
405afe61c15SRodney W. Grimes.Sh SEE ALSO
406afe61c15SRodney W. Grimes.Xr getsockopt 2 ,
407afe61c15SRodney W. Grimes.Xr recv 2 ,
4080b992c1dSWolfram Schneider.Xr send 2 ,
409afe61c15SRodney W. Grimes.Xr icmp 4 ,
4100b992c1dSWolfram Schneider.Xr inet 4 ,
4110b992c1dSWolfram Schneider.Xr intro 4
412afe61c15SRodney W. Grimes.Sh HISTORY
413afe61c15SRodney W. GrimesThe
414afe61c15SRodney W. Grimes.Nm
415afe61c15SRodney W. Grimesprotocol appeared in
416afe61c15SRodney W. Grimes.Bx 4.2 .
417