xref: /freebsd/share/man/man4/ip.4 (revision 74c0361a9d41f07ea2475840eff064be5bf22a7a)
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
4232eef9aeSRuslan Ermilov.In sys/types.h
4332eef9aeSRuslan Ermilov.In sys/socket.h
4432eef9aeSRuslan Ermilov.In 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
14774c0361aSMike Silbersack.Dv IPPORT_HIFIRSTAUTO
1487ee32b9fSPeter Wemmthrough
14974c0361aSMike Silbersack.Dv IPPORT_HILASTAUTO .
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
1688f5e8232SBen Smithurst.Dv IPPORT_RESERVED - 1
1697ee32b9fSPeter Wemmdown to
1708f5e8232SBen Smithurst.Li IPPORT_RESERVEDSTART
1718f5e8232SBen Smithurstin descending order.
1728f5e8232SBen SmithurstThis is adjustable through the sysctl setting:
1738f5e8232SBen Smithurst.Sy net.inet.ip.portrange.lowfirst
1748f5e8232SBen Smithurstand
1758f5e8232SBen Smithurst.Sy net.inet.ip.portrange.lowlast .
1767ee32b9fSPeter Wemm.El
177afe61c15SRodney W. Grimes.Ss "Multicast Options"
178afe61c15SRodney W. Grimes.Pp
179afe61c15SRodney W. Grimes.Tn IP
180afe61c15SRodney W. Grimesmulticasting is supported only on
181afe61c15SRodney W. Grimes.Dv AF_INET
182afe61c15SRodney W. Grimessockets of type
183afe61c15SRodney W. Grimes.Dv SOCK_DGRAM
184afe61c15SRodney W. Grimesand
185afe61c15SRodney W. Grimes.Dv SOCK_RAW ,
186afe61c15SRodney W. Grimesand only on networks where the interface
187afe61c15SRodney W. Grimesdriver supports multicasting.
188afe61c15SRodney W. Grimes.Pp
189afe61c15SRodney W. GrimesThe
190afe61c15SRodney W. Grimes.Dv IP_MULTICAST_TTL
191afe61c15SRodney W. Grimesoption changes the time-to-live (TTL)
192afe61c15SRodney W. Grimesfor outgoing multicast datagrams
193afe61c15SRodney W. Grimesin order to control the scope of the multicasts:
194afe61c15SRodney W. Grimes.Bd -literal
195afe61c15SRodney W. Grimesu_char ttl;	/* range: 0 to 255, default = 1 */
196afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl));
197afe61c15SRodney W. Grimes.Ed
1980c3a1746SMike Pritchard.Pp
199afe61c15SRodney W. GrimesDatagrams with a TTL of 1 are not forwarded beyond the local network.
200afe61c15SRodney W. GrimesMulticast datagrams with a TTL of 0 will not be transmitted on any network,
201afe61c15SRodney W. Grimesbut may be delivered locally if the sending host belongs to the destination
202afe61c15SRodney W. Grimesgroup and if multicast loopback has not been disabled on the sending socket
203afe61c15SRodney W. Grimes(see below).  Multicast datagrams with TTL greater than 1 may be forwarded
204afe61c15SRodney W. Grimesto other networks if a multicast router is attached to the local network.
205afe61c15SRodney W. Grimes.Pp
206afe61c15SRodney W. GrimesFor hosts with multiple interfaces, each multicast transmission is
207afe61c15SRodney W. Grimessent from the primary network interface.
208afe61c15SRodney W. GrimesThe
209afe61c15SRodney W. Grimes.Dv IP_MULTICAST_IF
210afe61c15SRodney W. Grimesoption overrides the default for
211afe61c15SRodney W. Grimessubsequent transmissions from a given socket:
212afe61c15SRodney W. Grimes.Bd -literal
213afe61c15SRodney W. Grimesstruct in_addr addr;
214afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &addr, sizeof(addr));
215afe61c15SRodney W. Grimes.Ed
2160c3a1746SMike Pritchard.Pp
217afe61c15SRodney W. Grimeswhere "addr" is the local
218afe61c15SRodney W. Grimes.Tn IP
219afe61c15SRodney W. Grimesaddress of the desired interface or
220afe61c15SRodney W. Grimes.Dv INADDR_ANY
221afe61c15SRodney W. Grimesto specify the default interface.
222afe61c15SRodney W. GrimesAn interface's local IP address and multicast capability can
223afe61c15SRodney W. Grimesbe obtained via the
224afe61c15SRodney W. Grimes.Dv SIOCGIFCONF
225afe61c15SRodney W. Grimesand
226afe61c15SRodney W. Grimes.Dv SIOCGIFFLAGS
227afe61c15SRodney W. Grimesioctls.
228afe61c15SRodney W. GrimesNormal applications should not need to use this option.
229afe61c15SRodney W. Grimes.Pp
230afe61c15SRodney W. GrimesIf a multicast datagram is sent to a group to which the sending host itself
231afe61c15SRodney W. Grimesbelongs (on the outgoing interface), a copy of the datagram is, by default,
232afe61c15SRodney W. Grimeslooped back by the IP layer for local delivery.
233afe61c15SRodney W. GrimesThe
234afe61c15SRodney W. Grimes.Dv IP_MULTICAST_LOOP
235afe61c15SRodney W. Grimesoption gives the sender explicit control
236afe61c15SRodney W. Grimesover whether or not subsequent datagrams are looped back:
237afe61c15SRodney W. Grimes.Bd -literal
238afe61c15SRodney W. Grimesu_char loop;	/* 0 = disable, 1 = enable (default) */
239afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop));
240afe61c15SRodney W. Grimes.Ed
2410c3a1746SMike Pritchard.Pp
242afe61c15SRodney W. GrimesThis option
243afe61c15SRodney W. Grimesimproves performance for applications that may have no more than one
244aabbf63eSBen Smithurstinstance on a single host (such as a router daemon), by eliminating
245afe61c15SRodney W. Grimesthe overhead of receiving their own transmissions.  It should generally not
246afe61c15SRodney W. Grimesbe used by applications for which there may be more than one instance on a
247afe61c15SRodney W. Grimessingle host (such as a conferencing program) or for which the sender does
248afe61c15SRodney W. Grimesnot belong to the destination group (such as a time querying program).
249afe61c15SRodney W. Grimes.Pp
250afe61c15SRodney W. GrimesA multicast datagram sent with an initial TTL greater than 1 may be delivered
251afe61c15SRodney W. Grimesto the sending host on a different interface from that on which it was sent,
252afe61c15SRodney W. Grimesif the host belongs to the destination group on that other interface.  The
253afe61c15SRodney W. Grimesloopback control option has no effect on such delivery.
254afe61c15SRodney W. Grimes.Pp
255afe61c15SRodney W. GrimesA host must become a member of a multicast group before it can receive
256afe61c15SRodney W. Grimesdatagrams sent to the group.  To join a multicast group, use the
257afe61c15SRodney W. Grimes.Dv IP_ADD_MEMBERSHIP
258afe61c15SRodney W. Grimesoption:
259afe61c15SRodney W. Grimes.Bd -literal
260afe61c15SRodney W. Grimesstruct ip_mreq mreq;
261afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq));
262afe61c15SRodney W. Grimes.Ed
2630c3a1746SMike Pritchard.Pp
264afe61c15SRodney W. Grimeswhere
265afe61c15SRodney W. Grimes.Fa mreq
266afe61c15SRodney W. Grimesis the following structure:
267afe61c15SRodney W. Grimes.Bd -literal
268afe61c15SRodney W. Grimesstruct ip_mreq {
2690c3a1746SMike Pritchard    struct in_addr imr_multiaddr; /* IP multicast address of group */
2700c3a1746SMike Pritchard    struct in_addr imr_interface; /* local IP address of interface */
271afe61c15SRodney W. Grimes}
272afe61c15SRodney W. Grimes.Ed
2730c3a1746SMike Pritchard.Pp
274afe61c15SRodney W. Grimes.Dv imr_interface
275afe61c15SRodney W. Grimesshould
276afe61c15SRodney W. Grimesbe
277afe61c15SRodney W. Grimes.Dv INADDR_ANY
278afe61c15SRodney W. Grimesto choose the default multicast interface,
279afe61c15SRodney W. Grimesor the
280afe61c15SRodney W. Grimes.Tn IP
281afe61c15SRodney W. Grimesaddress of a particular multicast-capable interface if
282afe61c15SRodney W. Grimesthe host is multihomed.
283afe61c15SRodney W. GrimesMembership is associated with a single interface;
284afe61c15SRodney W. Grimesprograms running on multihomed hosts may need to
285afe61c15SRodney W. Grimesjoin the same group on more than one interface.
286afe61c15SRodney W. GrimesUp to
287afe61c15SRodney W. Grimes.Dv IP_MAX_MEMBERSHIPS
288afe61c15SRodney W. Grimes(currently 20) memberships may be added on a
289afe61c15SRodney W. Grimessingle socket.
290afe61c15SRodney W. Grimes.Pp
291afe61c15SRodney W. GrimesTo drop a membership, use:
292afe61c15SRodney W. Grimes.Bd -literal
293afe61c15SRodney W. Grimesstruct ip_mreq mreq;
294afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
295afe61c15SRodney W. Grimes.Ed
2960c3a1746SMike Pritchard.Pp
297afe61c15SRodney W. Grimeswhere
298afe61c15SRodney W. Grimes.Fa mreq
299afe61c15SRodney W. Grimescontains the same values as used to add the membership.
300afe61c15SRodney W. GrimesMemberships are dropped when the socket is closed or the process exits.
301afe61c15SRodney W. Grimes.\"-----------------------
302afe61c15SRodney W. Grimes.Ss "Raw IP Sockets"
303afe61c15SRodney W. Grimes.Pp
304afe61c15SRodney W. GrimesRaw
305afe61c15SRodney W. Grimes.Tn IP
306afe61c15SRodney W. Grimessockets are connectionless,
307afe61c15SRodney W. Grimesand are normally used with the
308edf0e5b3SMike Pritchard.Xr sendto 2
309afe61c15SRodney W. Grimesand
310edf0e5b3SMike Pritchard.Xr recvfrom 2
311afe61c15SRodney W. Grimescalls, though the
312afe61c15SRodney W. Grimes.Xr connect 2
313afe61c15SRodney W. Grimescall may also be used to fix the destination for future
314afe61c15SRodney W. Grimespackets (in which case the
315afe61c15SRodney W. Grimes.Xr read 2
316afe61c15SRodney W. Grimesor
317afe61c15SRodney W. Grimes.Xr recv 2
318afe61c15SRodney W. Grimesand
319afe61c15SRodney W. Grimes.Xr write 2
320afe61c15SRodney W. Grimesor
321afe61c15SRodney W. Grimes.Xr send 2
322afe61c15SRodney W. Grimessystem calls may be used).
323afe61c15SRodney W. Grimes.Pp
324afe61c15SRodney W. GrimesIf
325afe61c15SRodney W. Grimes.Fa proto
326afe61c15SRodney W. Grimesis 0, the default protocol
327afe61c15SRodney W. Grimes.Dv IPPROTO_RAW
328afe61c15SRodney W. Grimesis used for outgoing
329afe61c15SRodney W. Grimespackets, and only incoming packets destined for that protocol
330afe61c15SRodney W. Grimesare received.
331afe61c15SRodney W. GrimesIf
332afe61c15SRodney W. Grimes.Fa proto
333afe61c15SRodney W. Grimesis non-zero, that protocol number will be used on outgoing packets
334afe61c15SRodney W. Grimesand to filter incoming packets.
335afe61c15SRodney W. Grimes.Pp
336afe61c15SRodney W. GrimesOutgoing packets automatically have an
337afe61c15SRodney W. Grimes.Tn IP
338afe61c15SRodney W. Grimesheader prepended to
339afe61c15SRodney W. Grimesthem (based on the destination address and the protocol
340afe61c15SRodney W. Grimesnumber the socket is created with),
341afe61c15SRodney W. Grimesunless the
342afe61c15SRodney W. Grimes.Dv IP_HDRINCL
343afe61c15SRodney W. Grimesoption has been set.
344afe61c15SRodney W. GrimesIncoming packets are received with
345afe61c15SRodney W. Grimes.Tn IP
346afe61c15SRodney W. Grimesheader and options intact.
347afe61c15SRodney W. Grimes.Pp
348afe61c15SRodney W. Grimes.Dv IP_HDRINCL
349afe61c15SRodney W. Grimesindicates the complete IP header is included with the data
350afe61c15SRodney W. Grimesand may be used only with the
351afe61c15SRodney W. Grimes.Dv SOCK_RAW
352afe61c15SRodney W. Grimestype.
353afe61c15SRodney W. Grimes.Bd -literal
354ddbd0698SBruce Evans#include <netinet/in_systm.h>
355afe61c15SRodney W. Grimes#include <netinet/ip.h>
356afe61c15SRodney W. Grimes
357afe61c15SRodney W. Grimesint hincl = 1;                  /* 1 = on, 0 = off */
358afe61c15SRodney W. Grimessetsockopt(s, IPPROTO_IP, IP_HDRINCL, &hincl, sizeof(hincl));
359afe61c15SRodney W. Grimes.Ed
3600c3a1746SMike Pritchard.Pp
361afe61c15SRodney W. GrimesUnlike previous
3628ce3f3ddSRuslan Ermilov.Bx
363afe61c15SRodney W. Grimesreleases, the program must set all
364afe61c15SRodney W. Grimesthe fields of the IP header, including the following:
365afe61c15SRodney W. Grimes.Bd -literal
366afe61c15SRodney W. Grimesip->ip_v = IPVERSION;
367afe61c15SRodney W. Grimesip->ip_hl = hlen >> 2;
368afe61c15SRodney W. Grimesip->ip_id = 0;  /* 0 means kernel set appropriate value */
369afe61c15SRodney W. Grimesip->ip_off = offset;
370afe61c15SRodney W. Grimes.Ed
3710c3a1746SMike Pritchard.Pp
372afe61c15SRodney W. GrimesIf the header source address is set to
373afe61c15SRodney W. Grimes.Dv INADDR_ANY ,
374afe61c15SRodney W. Grimesthe kernel will choose an appropriate address.
375ef0180edSDima Dorfman.Sh ERRORS
376afe61c15SRodney W. GrimesA socket operation may fail with one of the following errors returned:
377ef0180edSDima Dorfman.Bl -tag -width Er
378afe61c15SRodney W. Grimes.It Bq Er EISCONN
379afe61c15SRodney W. Grimeswhen trying to establish a connection on a socket which
380afe61c15SRodney W. Grimesalready has one, or when trying to send a datagram with the destination
381afe61c15SRodney W. Grimesaddress specified and the socket is already connected;
382afe61c15SRodney W. Grimes.It Bq Er ENOTCONN
383afe61c15SRodney W. Grimeswhen trying to send a datagram, but
384afe61c15SRodney W. Grimesno destination address is specified, and the socket hasn't been
385afe61c15SRodney W. Grimesconnected;
386afe61c15SRodney W. Grimes.It Bq Er ENOBUFS
387afe61c15SRodney W. Grimeswhen the system runs out of memory for
388afe61c15SRodney W. Grimesan internal data structure;
389afe61c15SRodney W. Grimes.It Bq Er EADDRNOTAVAIL
390afe61c15SRodney W. Grimeswhen an attempt is made to create a
391afe61c15SRodney W. Grimessocket with a network address for which no network interface
392afe61c15SRodney W. Grimesexists.
3937bdf965dSAlexander Langer.It Bq Er EACCES
394afe61c15SRodney W. Grimeswhen an attempt is made to create
395afe61c15SRodney W. Grimesa raw IP socket by a non-privileged process.
396afe61c15SRodney W. Grimes.El
397afe61c15SRodney W. Grimes.Pp
398afe61c15SRodney W. GrimesThe following errors specific to
399afe61c15SRodney W. Grimes.Tn IP
400afe61c15SRodney W. Grimesmay occur when setting or getting
401afe61c15SRodney W. Grimes.Tn IP
402afe61c15SRodney W. Grimesoptions:
403afe61c15SRodney W. Grimes.Bl -tag -width EADDRNOTAVAILxx
404afe61c15SRodney W. Grimes.It Bq Er EINVAL
405afe61c15SRodney W. GrimesAn unknown socket option name was given.
406afe61c15SRodney W. Grimes.It Bq Er EINVAL
407afe61c15SRodney W. GrimesThe IP option field was improperly formed;
408afe61c15SRodney W. Grimesan option field was shorter than the minimum value
409afe61c15SRodney W. Grimesor longer than the option buffer provided.
410afe61c15SRodney W. Grimes.El
411afe61c15SRodney W. Grimes.Sh SEE ALSO
412afe61c15SRodney W. Grimes.Xr getsockopt 2 ,
413afe61c15SRodney W. Grimes.Xr recv 2 ,
4140b992c1dSWolfram Schneider.Xr send 2 ,
415afe61c15SRodney W. Grimes.Xr icmp 4 ,
4160b992c1dSWolfram Schneider.Xr inet 4 ,
4170b992c1dSWolfram Schneider.Xr intro 4
418afe61c15SRodney W. Grimes.Sh HISTORY
419afe61c15SRodney W. GrimesThe
420afe61c15SRodney W. Grimes.Nm
421afe61c15SRodney W. Grimesprotocol appeared in
422afe61c15SRodney W. Grimes.Bx 4.2 .
423