xref: /freebsd/share/man/man4/ip.4 (revision 8ce3f3dd285da85a777c96dc238db4909ff9e7f1)
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
337f3dea24SPeter Wemm.\" $FreeBSD$
34afe61c15SRodney W. Grimes.\"
358ce3f3ddSRuslan Ermilov.Dd March 3, 2001
36afe61c15SRodney W. Grimes.Dt IP 4
378ce3f3ddSRuslan Ermilov.Os
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
1038ce3f3ddSRuslan Ermilov.Dv SOCK_STREAM , SOCK_DGRAM ,
1048ce3f3ddSRuslan Ermilovand certain types of
1058ce3f3ddSRuslan Ermilov.Dv SOCK_RAW
1066d249eeeSSheldon Hearnsockets.
1076d249eeeSSheldon HearnFor example,
108afe61c15SRodney W. Grimes.Bd -literal
109a7c83731SRuslan Ermilovint tos = IPTOS_LOWDELAY;       /* see <netinet/ip.h> */
110afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
111afe61c15SRodney W. Grimes
112afe61c15SRodney W. Grimesint ttl = 60;                   /* max = 255 */
113afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_TTL, &ttl, sizeof(ttl));
114afe61c15SRodney W. Grimes.Ed
115afe61c15SRodney W. Grimes.Pp
116afe61c15SRodney W. GrimesIf the
117afe61c15SRodney W. Grimes.Dv IP_RECVDSTADDR
118afe61c15SRodney W. Grimesoption is enabled on a
119afe61c15SRodney W. Grimes.Dv SOCK_DGRAM
120afe61c15SRodney W. Grimessocket,
121afe61c15SRodney W. Grimesthe
122edf0e5b3SMike Pritchard.Xr recvmsg 2
123afe61c15SRodney W. Grimescall will return the destination
124afe61c15SRodney W. Grimes.Tn IP
125afe61c15SRodney W. Grimesaddress for a
126afe61c15SRodney W. Grimes.Tn UDP
127afe61c15SRodney W. Grimesdatagram.
128afe61c15SRodney W. GrimesThe msg_control field in the msghdr structure points to a buffer
129afe61c15SRodney W. Grimesthat contains a cmsghdr structure followed by the
130afe61c15SRodney W. Grimes.Tn IP
131afe61c15SRodney W. Grimesaddress.
132afe61c15SRodney W. GrimesThe cmsghdr fields have the following values:
133afe61c15SRodney W. Grimes.Bd -literal
134afe61c15SRodney W. Grimescmsg_len = sizeof(struct in_addr)
135afe61c15SRodney W. Grimescmsg_level = IPPROTO_IP
136afe61c15SRodney W. Grimescmsg_type = IP_RECVDSTADDR
137afe61c15SRodney W. Grimes.Ed
1387ee32b9fSPeter Wemm.Pp
1397ee32b9fSPeter Wemm.Dv IP_PORTRANGE
1407ee32b9fSPeter Wemmmay be used to set the port range used for selecting a local port number
1416d249eeeSSheldon Hearnon a socket with an unspecified (zero) port number.
1426d249eeeSSheldon HearnIt has the following
1437ee32b9fSPeter Wemmpossible values:
1447ee32b9fSPeter Wemm.Bl -tag -width IP_PORTRANGE_DEFAULT
1457ee32b9fSPeter Wemm.It Dv IP_PORTRANGE_DEFAULT
1467ee32b9fSPeter Wemmuse the default range of values, normally
1477ee32b9fSPeter Wemm.Dv IPPORT_RESERVED
1487ee32b9fSPeter Wemmthrough
1496237d740SPierre Beyssac.Dv IPPORT_USERRESERVED .
1507ee32b9fSPeter WemmThis is adjustable through the sysctl setting:
1516a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.first
1527ee32b9fSPeter Wemmand
1536a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.last .
1547ee32b9fSPeter Wemm.It Dv IP_PORTRANGE_HIGH
1557ee32b9fSPeter Wemmuse a high range of values, normally
1567ee32b9fSPeter Wemm.Dv IPPORT_HIFIRSTAUTO
1577ee32b9fSPeter Wemmand
1587ee32b9fSPeter Wemm.Dv IPPORT_HILASTAUTO .
1597ee32b9fSPeter WemmThis is adjustable through the sysctl setting:
1606a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.hifirst
1617ee32b9fSPeter Wemmand
1626a6c4c22SMike Pritchard.Sy net.inet.ip.portrange.hilast .
1637ee32b9fSPeter Wemm.It Dv IP_PORTRANGE_LOW
1647ee32b9fSPeter Wemmuse a low range of ports, which are normally restricted to
1657ee32b9fSPeter Wemmprivileged processes on
1667ee32b9fSPeter Wemm.Ux
1677ee32b9fSPeter Wemmsystems.  The range is normally from
1687ee32b9fSPeter Wemm.Dv IPPORT_RESERVED
1697ee32b9fSPeter Wemmdown to
1707ee32b9fSPeter Wemm.Li 1
1717ee32b9fSPeter Wemmin descending order.  This range is not sysctl configurable.
1727ee32b9fSPeter Wemm.El
173afe61c15SRodney W. Grimes.Ss "Multicast Options"
174afe61c15SRodney W. Grimes.Pp
175afe61c15SRodney W. Grimes.Tn IP
176afe61c15SRodney W. Grimesmulticasting is supported only on
177afe61c15SRodney W. Grimes.Dv AF_INET
178afe61c15SRodney W. Grimessockets of type
179afe61c15SRodney W. Grimes.Dv SOCK_DGRAM
180afe61c15SRodney W. Grimesand
181afe61c15SRodney W. Grimes.Dv SOCK_RAW ,
182afe61c15SRodney W. Grimesand only on networks where the interface
183afe61c15SRodney W. Grimesdriver supports multicasting.
184afe61c15SRodney W. Grimes.Pp
185afe61c15SRodney W. GrimesThe
186afe61c15SRodney W. Grimes.Dv IP_MULTICAST_TTL
187afe61c15SRodney W. Grimesoption changes the time-to-live (TTL)
188afe61c15SRodney W. Grimesfor outgoing multicast datagrams
189afe61c15SRodney W. Grimesin order to control the scope of the multicasts:
190afe61c15SRodney W. Grimes.Bd -literal
191afe61c15SRodney W. Grimesu_char ttl;	/* range: 0 to 255, default = 1 */
192afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl));
193afe61c15SRodney W. Grimes.Ed
1940c3a1746SMike Pritchard.Pp
195afe61c15SRodney W. GrimesDatagrams with a TTL of 1 are not forwarded beyond the local network.
196afe61c15SRodney W. GrimesMulticast datagrams with a TTL of 0 will not be transmitted on any network,
197afe61c15SRodney W. Grimesbut may be delivered locally if the sending host belongs to the destination
198afe61c15SRodney W. Grimesgroup and if multicast loopback has not been disabled on the sending socket
199afe61c15SRodney W. Grimes(see below).  Multicast datagrams with TTL greater than 1 may be forwarded
200afe61c15SRodney W. Grimesto other networks if a multicast router is attached to the local network.
201afe61c15SRodney W. Grimes.Pp
202afe61c15SRodney W. GrimesFor hosts with multiple interfaces, each multicast transmission is
203afe61c15SRodney W. Grimessent from the primary network interface.
204afe61c15SRodney W. GrimesThe
205afe61c15SRodney W. Grimes.Dv IP_MULTICAST_IF
206afe61c15SRodney W. Grimesoption overrides the default for
207afe61c15SRodney W. Grimessubsequent transmissions from a given socket:
208afe61c15SRodney W. Grimes.Bd -literal
209afe61c15SRodney W. Grimesstruct in_addr addr;
210afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &addr, sizeof(addr));
211afe61c15SRodney W. Grimes.Ed
2120c3a1746SMike Pritchard.Pp
213afe61c15SRodney W. Grimeswhere "addr" is the local
214afe61c15SRodney W. Grimes.Tn IP
215afe61c15SRodney W. Grimesaddress of the desired interface or
216afe61c15SRodney W. Grimes.Dv INADDR_ANY
217afe61c15SRodney W. Grimesto specify the default interface.
218afe61c15SRodney W. GrimesAn interface's local IP address and multicast capability can
219afe61c15SRodney W. Grimesbe obtained via the
220afe61c15SRodney W. Grimes.Dv SIOCGIFCONF
221afe61c15SRodney W. Grimesand
222afe61c15SRodney W. Grimes.Dv SIOCGIFFLAGS
223afe61c15SRodney W. Grimesioctls.
224afe61c15SRodney W. GrimesNormal applications should not need to use this option.
225afe61c15SRodney W. Grimes.Pp
226afe61c15SRodney W. GrimesIf a multicast datagram is sent to a group to which the sending host itself
227afe61c15SRodney W. Grimesbelongs (on the outgoing interface), a copy of the datagram is, by default,
228afe61c15SRodney W. Grimeslooped back by the IP layer for local delivery.
229afe61c15SRodney W. GrimesThe
230afe61c15SRodney W. Grimes.Dv IP_MULTICAST_LOOP
231afe61c15SRodney W. Grimesoption gives the sender explicit control
232afe61c15SRodney W. Grimesover whether or not subsequent datagrams are looped back:
233afe61c15SRodney W. Grimes.Bd -literal
234afe61c15SRodney W. Grimesu_char loop;	/* 0 = disable, 1 = enable (default) */
235afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop));
236afe61c15SRodney W. Grimes.Ed
2370c3a1746SMike Pritchard.Pp
238afe61c15SRodney W. GrimesThis option
239afe61c15SRodney W. Grimesimproves performance for applications that may have no more than one
240aabbf63eSBen Smithurstinstance on a single host (such as a router daemon), by eliminating
241afe61c15SRodney W. Grimesthe overhead of receiving their own transmissions.  It should generally not
242afe61c15SRodney W. Grimesbe used by applications for which there may be more than one instance on a
243afe61c15SRodney W. Grimessingle host (such as a conferencing program) or for which the sender does
244afe61c15SRodney W. Grimesnot belong to the destination group (such as a time querying program).
245afe61c15SRodney W. Grimes.Pp
246afe61c15SRodney W. GrimesA multicast datagram sent with an initial TTL greater than 1 may be delivered
247afe61c15SRodney W. Grimesto the sending host on a different interface from that on which it was sent,
248afe61c15SRodney W. Grimesif the host belongs to the destination group on that other interface.  The
249afe61c15SRodney W. Grimesloopback control option has no effect on such delivery.
250afe61c15SRodney W. Grimes.Pp
251afe61c15SRodney W. GrimesA host must become a member of a multicast group before it can receive
252afe61c15SRodney W. Grimesdatagrams sent to the group.  To join a multicast group, use the
253afe61c15SRodney W. Grimes.Dv IP_ADD_MEMBERSHIP
254afe61c15SRodney W. Grimesoption:
255afe61c15SRodney W. Grimes.Bd -literal
256afe61c15SRodney W. Grimesstruct ip_mreq mreq;
257afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq));
258afe61c15SRodney W. Grimes.Ed
2590c3a1746SMike Pritchard.Pp
260afe61c15SRodney W. Grimeswhere
261afe61c15SRodney W. Grimes.Fa mreq
262afe61c15SRodney W. Grimesis the following structure:
263afe61c15SRodney W. Grimes.Bd -literal
264afe61c15SRodney W. Grimesstruct ip_mreq {
2650c3a1746SMike Pritchard    struct in_addr imr_multiaddr; /* IP multicast address of group */
2660c3a1746SMike Pritchard    struct in_addr imr_interface; /* local IP address of interface */
267afe61c15SRodney W. Grimes}
268afe61c15SRodney W. Grimes.Ed
2690c3a1746SMike Pritchard.Pp
270afe61c15SRodney W. Grimes.Dv imr_interface
271afe61c15SRodney W. Grimesshould
272afe61c15SRodney W. Grimesbe
273afe61c15SRodney W. Grimes.Dv INADDR_ANY
274afe61c15SRodney W. Grimesto choose the default multicast interface,
275afe61c15SRodney W. Grimesor the
276afe61c15SRodney W. Grimes.Tn IP
277afe61c15SRodney W. Grimesaddress of a particular multicast-capable interface if
278afe61c15SRodney W. Grimesthe host is multihomed.
279afe61c15SRodney W. GrimesMembership is associated with a single interface;
280afe61c15SRodney W. Grimesprograms running on multihomed hosts may need to
281afe61c15SRodney W. Grimesjoin the same group on more than one interface.
282afe61c15SRodney W. GrimesUp to
283afe61c15SRodney W. Grimes.Dv IP_MAX_MEMBERSHIPS
284afe61c15SRodney W. Grimes(currently 20) memberships may be added on a
285afe61c15SRodney W. Grimessingle socket.
286afe61c15SRodney W. Grimes.Pp
287afe61c15SRodney W. GrimesTo drop a membership, use:
288afe61c15SRodney W. Grimes.Bd -literal
289afe61c15SRodney W. Grimesstruct ip_mreq mreq;
290afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
291afe61c15SRodney W. Grimes.Ed
2920c3a1746SMike Pritchard.Pp
293afe61c15SRodney W. Grimeswhere
294afe61c15SRodney W. Grimes.Fa mreq
295afe61c15SRodney W. Grimescontains the same values as used to add the membership.
296afe61c15SRodney W. GrimesMemberships are dropped when the socket is closed or the process exits.
297afe61c15SRodney W. Grimes.\"-----------------------
298afe61c15SRodney W. Grimes.Ss "Raw IP Sockets"
299afe61c15SRodney W. Grimes.Pp
300afe61c15SRodney W. GrimesRaw
301afe61c15SRodney W. Grimes.Tn IP
302afe61c15SRodney W. Grimessockets are connectionless,
303afe61c15SRodney W. Grimesand are normally used with the
304edf0e5b3SMike Pritchard.Xr sendto 2
305afe61c15SRodney W. Grimesand
306edf0e5b3SMike Pritchard.Xr recvfrom 2
307afe61c15SRodney W. Grimescalls, though the
308afe61c15SRodney W. Grimes.Xr connect 2
309afe61c15SRodney W. Grimescall may also be used to fix the destination for future
310afe61c15SRodney W. Grimespackets (in which case the
311afe61c15SRodney W. Grimes.Xr read 2
312afe61c15SRodney W. Grimesor
313afe61c15SRodney W. Grimes.Xr recv 2
314afe61c15SRodney W. Grimesand
315afe61c15SRodney W. Grimes.Xr write 2
316afe61c15SRodney W. Grimesor
317afe61c15SRodney W. Grimes.Xr send 2
318afe61c15SRodney W. Grimessystem calls may be used).
319afe61c15SRodney W. Grimes.Pp
320afe61c15SRodney W. GrimesIf
321afe61c15SRodney W. Grimes.Fa proto
322afe61c15SRodney W. Grimesis 0, the default protocol
323afe61c15SRodney W. Grimes.Dv IPPROTO_RAW
324afe61c15SRodney W. Grimesis used for outgoing
325afe61c15SRodney W. Grimespackets, and only incoming packets destined for that protocol
326afe61c15SRodney W. Grimesare received.
327afe61c15SRodney W. GrimesIf
328afe61c15SRodney W. Grimes.Fa proto
329afe61c15SRodney W. Grimesis non-zero, that protocol number will be used on outgoing packets
330afe61c15SRodney W. Grimesand to filter incoming packets.
331afe61c15SRodney W. Grimes.Pp
332afe61c15SRodney W. GrimesOutgoing packets automatically have an
333afe61c15SRodney W. Grimes.Tn IP
334afe61c15SRodney W. Grimesheader prepended to
335afe61c15SRodney W. Grimesthem (based on the destination address and the protocol
336afe61c15SRodney W. Grimesnumber the socket is created with),
337afe61c15SRodney W. Grimesunless the
338afe61c15SRodney W. Grimes.Dv IP_HDRINCL
339afe61c15SRodney W. Grimesoption has been set.
340afe61c15SRodney W. GrimesIncoming packets are received with
341afe61c15SRodney W. Grimes.Tn IP
342afe61c15SRodney W. Grimesheader and options intact.
343afe61c15SRodney W. Grimes.Pp
344afe61c15SRodney W. Grimes.Dv IP_HDRINCL
345afe61c15SRodney W. Grimesindicates the complete IP header is included with the data
346afe61c15SRodney W. Grimesand may be used only with the
347afe61c15SRodney W. Grimes.Dv SOCK_RAW
348afe61c15SRodney W. Grimestype.
349afe61c15SRodney W. Grimes.Bd -literal
350ddbd0698SBruce Evans#include <netinet/in_systm.h>
351afe61c15SRodney W. Grimes#include <netinet/ip.h>
352afe61c15SRodney W. Grimes
353afe61c15SRodney W. Grimesint hincl = 1;                  /* 1 = on, 0 = off */
354afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_HDRINCL, &hincl, sizeof(hincl));
355afe61c15SRodney W. Grimes.Ed
3560c3a1746SMike Pritchard.Pp
357afe61c15SRodney W. GrimesUnlike previous
3588ce3f3ddSRuslan Ermilov.Bx
359afe61c15SRodney W. Grimesreleases, the program must set all
360afe61c15SRodney W. Grimesthe fields of the IP header, including the following:
361afe61c15SRodney W. Grimes.Bd -literal
362afe61c15SRodney W. Grimesip->ip_v = IPVERSION;
363afe61c15SRodney W. Grimesip->ip_hl = hlen >> 2;
364afe61c15SRodney W. Grimesip->ip_id = 0;  /* 0 means kernel set appropriate value */
365afe61c15SRodney W. Grimesip->ip_off = offset;
366afe61c15SRodney W. Grimes.Ed
3670c3a1746SMike Pritchard.Pp
368afe61c15SRodney W. GrimesIf the header source address is set to
369afe61c15SRodney W. Grimes.Dv INADDR_ANY ,
370afe61c15SRodney W. Grimesthe kernel will choose an appropriate address.
371afe61c15SRodney W. Grimes.Sh DIAGNOSTICS
372afe61c15SRodney W. GrimesA socket operation may fail with one of the following errors returned:
373afe61c15SRodney W. Grimes.Bl -tag -width [EADDRNOTAVAIL]
374afe61c15SRodney W. Grimes.It Bq Er EISCONN
375afe61c15SRodney W. Grimeswhen trying to establish a connection on a socket which
376afe61c15SRodney W. Grimesalready has one, or when trying to send a datagram with the destination
377afe61c15SRodney W. Grimesaddress specified and the socket is already connected;
378afe61c15SRodney W. Grimes.It Bq Er ENOTCONN
379afe61c15SRodney W. Grimeswhen trying to send a datagram, but
380afe61c15SRodney W. Grimesno destination address is specified, and the socket hasn't been
381afe61c15SRodney W. Grimesconnected;
382afe61c15SRodney W. Grimes.It Bq Er ENOBUFS
383afe61c15SRodney W. Grimeswhen the system runs out of memory for
384afe61c15SRodney W. Grimesan internal data structure;
385afe61c15SRodney W. Grimes.It Bq Er EADDRNOTAVAIL
386afe61c15SRodney W. Grimeswhen an attempt is made to create a
387afe61c15SRodney W. Grimessocket with a network address for which no network interface
388afe61c15SRodney W. Grimesexists.
3897bdf965dSAlexander Langer.It Bq Er EACCES
390afe61c15SRodney W. Grimeswhen an attempt is made to create
391afe61c15SRodney W. Grimesa raw IP socket by a non-privileged process.
392afe61c15SRodney W. Grimes.El
393afe61c15SRodney W. Grimes.Pp
394afe61c15SRodney W. GrimesThe following errors specific to
395afe61c15SRodney W. Grimes.Tn IP
396afe61c15SRodney W. Grimesmay occur when setting or getting
397afe61c15SRodney W. Grimes.Tn IP
398afe61c15SRodney W. Grimesoptions:
399afe61c15SRodney W. Grimes.Bl -tag -width EADDRNOTAVAILxx
400afe61c15SRodney W. Grimes.It Bq Er EINVAL
401afe61c15SRodney W. GrimesAn unknown socket option name was given.
402afe61c15SRodney W. Grimes.It Bq Er EINVAL
403afe61c15SRodney W. GrimesThe IP option field was improperly formed;
404afe61c15SRodney W. Grimesan option field was shorter than the minimum value
405afe61c15SRodney W. Grimesor longer than the option buffer provided.
406afe61c15SRodney W. Grimes.El
407afe61c15SRodney W. Grimes.Sh SEE ALSO
408afe61c15SRodney W. Grimes.Xr getsockopt 2 ,
409afe61c15SRodney W. Grimes.Xr recv 2 ,
4100b992c1dSWolfram Schneider.Xr send 2 ,
411afe61c15SRodney W. Grimes.Xr icmp 4 ,
4120b992c1dSWolfram Schneider.Xr inet 4 ,
4130b992c1dSWolfram Schneider.Xr intro 4
414afe61c15SRodney W. Grimes.Sh HISTORY
415afe61c15SRodney W. GrimesThe
416afe61c15SRodney W. Grimes.Nm
417afe61c15SRodney W. Grimesprotocol appeared in
418afe61c15SRodney W. Grimes.Bx 4.2 .
419