]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man4/ip6.4
xnu-3789.70.16.tar.gz
[apple/xnu.git] / bsd / man / man4 / ip6.4
CommitLineData
91447636
A
1.\" $NetBSD: ip6.4,v 1.20 2005/01/11 06:01:41 itojun Exp $
2.\" $KAME: ip6.4,v 1.23 2005/01/11 05:56:25 itojun Exp $
3.\" $OpenBSD: ip6.4,v 1.21 2005/01/06 03:50:46 itojun Exp $
9bccf70c
A
4.\"
5.\" Copyright (c) 1983, 1991, 1993
6.\" The Regents of the University of California. All rights reserved.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\" notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\" notice, this list of conditions and the following disclaimer in the
15.\" documentation and/or other materials provided with the distribution.
91447636 16.\" 3. Neither the name of the University nor the names of its contributors
9bccf70c
A
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
91447636 31.Dd December 29, 2004
9bccf70c
A
32.Dt IP6 4
33.Os
9bccf70c
A
34.Sh NAME
35.Nm ip6
91447636 36.Nd Internet Protocol version 6 (IPv6) network layer
9bccf70c 37.Sh SYNOPSIS
9bccf70c
A
38.In sys/socket.h
39.In netinet/in.h
40.Ft int
41.Fn socket AF_INET6 SOCK_RAW proto
9bccf70c 42.Sh DESCRIPTION
91447636
A
43The IPv6 network layer is used by the IPv6 protocol family for
44transporting data.
45IPv6 packets contain an IPv6 header that is not provided as part of the
46payload contents when passed to an application.
47IPv6 header options affect the behavior of this protocol and may be used
48by high-level protocols (such as the
49.Xr tcp 4
9bccf70c 50and
91447636
A
51.Xr udp 4
52protocols) as well as directly by
53.Dq raw sockets ,
54which process IPv6 messages at a lower-level and may be useful for
55developing new protocols and special-purpose applications.
56.Ss Header
57All IPv6 packets begin with an IPv6 header.
58When data received by the kernel are passed to the application, this
59header is not included in buffer, even when raw sockets are being used.
60Likewise, when data are sent to the kernel for transmit from the
61application, the buffer is not examined for an IPv6 header:
62the kernel always constructs the header.
63To directly access IPv6 headers from received packets and specify them
64as part of the buffer passed to the kernel, link-level access
65.Po
66.Xr bpf 4 ,
67for example
68.Pc
69must instead be utilized.
9bccf70c 70.Pp
91447636 71The header has the following definition:
9bccf70c 72.Bd -literal -offset indent
91447636
A
73struct ip6_hdr {
74 union {
75 struct ip6_hdrctl {
76 u_int32_t ip6_un1_flow; /* 20 bits of flow ID */
77 u_int16_t ip6_un1_plen; /* payload length */
78 u_int8_t ip6_un1_nxt; /* next header */
79 u_int8_t ip6_un1_hlim; /* hop limit */
80 } ip6_un1;
81 u_int8_t ip6_un2_vfc; /* version and class */
82 } ip6_ctlun;
83 struct in6_addr ip6_src; /* source address */
84 struct in6_addr ip6_dst; /* destination address */
85} __packed;
86
87#define ip6_vfc ip6_ctlun.ip6_un2_vfc
88#define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow
89#define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen
90#define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt
91#define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim
92#define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim
9bccf70c
A
93.Ed
94.Pp
91447636
A
95All fields are in network-byte order.
96Any options specified (see
97.Sx Options
98below) must also be specified in network-byte order.
99.Pp
100.Va ip6_flow
101specifies the flow ID.
102.Va ip6_plen
103specifies the payload length.
104.Va ip6_nxt
105specifies the type of the next header.
106.Va ip6_hlim
107specifies the hop limit.
108.Pp
109The top 4 bits of
110.Va ip6_vfc
111specify the class and the bottom 4 bits specify the version.
112.Pp
113.Va ip6_src
9bccf70c 114and
91447636
A
115.Va ip6_dst
116specify the source and destination addresses.
9bccf70c 117.Pp
91447636
A
118The IPv6 header may be followed by any number of extension headers that start
119with the following generic definition:
9bccf70c 120.Bd -literal -offset indent
91447636
A
121struct ip6_ext {
122 u_int8_t ip6e_nxt;
123 u_int8_t ip6e_len;
124} __packed;
9bccf70c 125.Ed
91447636
A
126.Ss Options
127IPv6 allows header options on packets to manipulate the behavior of the
128protocol.
129These options and other control requests are accessed with the
130.Xr getsockopt 2
131and
132.Xr setsockopt 2
133system calls at level
134.Dv IPPROTO_IPV6
135and by using ancillary data in
136.Xr recvmsg 2
137and
138.Xr sendmsg 2 .
139They can be used to access most of the fields in the IPv6 header and
140extension headers.
141.Pp
142The following socket options are supported:
143.Bl -tag -width Ds
144.\" .It Dv IPV6_OPTIONS
145.It Dv IPV6_UNICAST_HOPS Fa "int *"
146Get or set the default hop limit header field for outgoing unicast
147datagrams sent on this socket.
148A value of \-1 resets to the default value.
149.\" .It Dv IPV6_RECVOPTS Fa "int *"
150.\" Get or set the status of whether all header options will be
151.\" delivered along with the datagram when it is received.
152.\" .It Dv IPV6_RECVRETOPTS Fa "int *"
153.\" Get or set the status of whether header options will be delivered
154.\" for reply.
155.\" .It Dv IPV6_RECVDSTADDR Fa "int *"
156.\" Get or set the status of whether datagrams are received with
157.\" destination addresses.
158.\" .It Dv IPV6_RETOPTS
159.\" Get or set IPv6 options.
160.It Dv IPV6_MULTICAST_IF Fa "u_int *"
161Get or set the interface from which multicast packets will be sent.
162For hosts with multiple interfaces, each multicast transmission is sent
163from the primary network interface.
164The interface is specified as its index as provided by
165.Xr if_nametoindex 3 .
166A value of zero specifies the default interface.
167.It Dv IPV6_MULTICAST_HOPS Fa "int *"
168Get or set the default hop limit header field for outgoing multicast
169datagrams sent on this socket.
170This option controls the scope of multicast datagram transmissions.
171.Pp
172Datagrams with a hop limit of 1 are not forwarded beyond the local
173network.
174Multicast datagrams with a hop limit of zero will not be transmitted on
175any network but may be delivered locally if the sending host belongs to
176the destination group and if multicast loopback (see below) has not been
177disabled on the sending socket.
178Multicast datagrams with a hop limit greater than 1 may be forwarded to
179the other networks if a multicast router (such as
180.Xr mrouted 8 )
181is attached to the local network.
182.It Dv IPV6_MULTICAST_LOOP Fa "u_int *"
183Get or set the status of whether multicast datagrams will be looped back
184for local delivery when a multicast datagram is sent to a group to which
185the sending host belongs.
186.Pp
187This option improves performance for applications that may have no more
188than one instance on a single host (such as a router daemon) by
189eliminating the overhead of receiving their own transmissions.
190It should generally not be used by applications for which there may be
191more than one instance on a single host (such as a conferencing program)
192or for which the sender does not belong to the destination group
193(such as a time-querying program).
194.Pp
195A multicast datagram sent with an initial hop limit greater than 1 may
196be delivered to the sending host on a different interface from that on
197which it was sent if the host belongs to the destination group on that
198other interface.
199The multicast loopback control option has no effect on such delivery.
200.It Dv IPV6_JOIN_GROUP Fa "struct ipv6_mreq *"
201Join a multicast group.
9bccf70c
A
202A host must become a member of a multicast group before it can receive
203datagrams sent to the group.
91447636
A
204.Bd -literal
205struct ipv6_mreq {
206 struct in6_addr ipv6mr_multiaddr;
207 unsigned int ipv6mr_interface;
208};
9bccf70c
A
209.Ed
210.Pp
91447636
A
211.Va ipv6mr_interface
212may be set to zeroes to choose the default multicast interface or to the
213index of a particular multicast-capable interface if the host is
214multihomed.
215Membership is associated with a single interface; programs running on
216multihomed hosts may need to join the same group on more than one
217interface.
218.Pp
219If the multicast address is unspecified (i.e., all zeroes), messages
220from all multicast addresses will be accepted by this group.
221Note that setting to this value requires superuser privileges.
222.It Dv IPV6_LEAVE_GROUP Fa "struct ipv6_mreq *"
223Drop membership from the associated multicast group.
224Memberships are automatically dropped when the socket is closed or when
225the process exits.
226.It Dv IPV6_PORTRANGE Fa "int *"
227Get or set the allocation policy of ephemeral ports for when the kernel
228automatically binds a local address to this socket.
229The following values are available:
230.Pp
231.Bl -tag -width IPV6_PORTRANGE_DEFAULT -compact
232.It Dv IPV6_PORTRANGE_DEFAULT
233Use the regular range of non-reserved ports (varies, see
234.Xr sysctl 8 ) .
235.It Dv IPV6_PORTRANGE_HIGH
236Use a high range (varies, see
237.Xr sysctl 8 ) .
238.It Dv IPV6_PORTRANGE_LOW
239Use a low, reserved range (600\-1023).
240.El
241.It Dv IPV6_PKTINFO Fa "int *"
242Get or set whether additional information about subsequent packets will
243be provided as ancillary data along with the payload in subsequent
244.Xr recvmsg 2
245calls.
246The information is stored in the following structure in the ancillary
247data returned:
248.Bd -literal
249struct in6_pktinfo {
250 struct in6_addr ipi6_addr; /* src/dst IPv6 address */
251 unsigned int ipi6_ifindex; /* send/recv if index */
9bccf70c
A
252};
253.Ed
91447636
A
254.It Dv IPV6_HOPLIMIT Fa "int *"
255Get or set whether the hop limit header field from subsequent packets
256will be provided as ancillary data along with the payload in subsequent
257.Xr recvmsg 2
258calls.
259The value is stored as an
260.Vt int
261in the ancillary data returned.
262.\" .It Dv IPV6_NEXTHOP Fa "int *"
263.\" Get or set whether the address of the next hop for subsequent
264.\" packets will be provided as ancillary data along with the payload in
265.\" subsequent
266.\" .Xr recvmsg 2
267.\" calls.
268.\" The option is stored as a
269.\" .Vt sockaddr
270.\" structure in the ancillary data returned.
271.\" .Pp
272.\" This option requires superuser privileges.
273.It Dv IPV6_HOPOPTS Fa "int *"
274Get or set whether the hop-by-hop options from subsequent packets will be
275provided as ancillary data along with the payload in subsequent
276.Xr recvmsg 2
277calls.
278The option is stored in the following structure in the ancillary data
279returned:
280.Bd -literal
281struct ip6_hbh {
282 u_int8_t ip6h_nxt; /* next header */
283 u_int8_t ip6h_len; /* length in units of 8 octets */
284/* followed by options */
285} __packed;
286.Ed
9bccf70c 287.Pp
91447636
A
288The
289.Fn inet6_option_space
290routine and family of routines may be used to manipulate this data.
9bccf70c 291.Pp
91447636
A
292This option requires superuser privileges.
293.It Dv IPV6_DSTOPTS Fa "int *"
294Get or set whether the destination options from subsequent packets will
295be provided as ancillary data along with the payload in subsequent
296.Xr recvmsg 2
297calls.
298The option is stored in the following structure in the ancillary data
299returned:
300.Bd -literal
301struct ip6_dest {
302 u_int8_t ip6d_nxt; /* next header */
303 u_int8_t ip6d_len; /* length in units of 8 octets */
304/* followed by options */
305} __packed;
9bccf70c
A
306.Ed
307.Pp
91447636
A
308The
309.Fn inet6_option_space
310routine and family of routines may be used to manipulate this data.
9bccf70c 311.Pp
91447636 312This option requires superuser privileges.
813fb2f6
A
313.It Dv IPV6_TCLASS Fa "int *"
314Get or set the value of the traffic class field used for outgoing
315datagrams on this socket. The value must be between -1 and 255.
316A value of -1 resets to the default value.
317.It Dv IPV6_RECVTCLASS Fa "int *"
318Get or set the status of whether the traffic class header field
319will be provided as ancillary data along with the payload in subsequent
320.Xr recvmsg 2
321calls. The header field is stored as a single value of type int.
91447636
A
322.It Dv IPV6_RTHDR Fa "int *"
323Get or set whether the routing header from subsequent packets will be
324provided as ancillary data along with the payload in subsequent
325.Xr recvmsg 2
326calls.
327The header is stored in the following structure in the ancillary data
328returned:
329.Bd -literal
330struct ip6_rthdr {
331 u_int8_t ip6r_nxt; /* next header */
332 u_int8_t ip6r_len; /* length in units of 8 octets */
333 u_int8_t ip6r_type; /* routing type */
334 u_int8_t ip6r_segleft; /* segments left */
335/* followed by routing-type-specific data */
336} __packed;
9bccf70c
A
337.Ed
338.Pp
91447636
A
339The
340.Fn inet6_option_space
341routine and family of routines may be used to manipulate this data.
342.Pp
343This option requires superuser privileges.
344.It Dv IPV6_PKTOPTIONS Fa "struct cmsghdr *"
345Get or set all header options and extension headers at one time on the
346last packet sent or received on the socket.
347All options must fit within the size of an mbuf (see
348.Xr mbuf 9 ) .
349Options are specified as a series of
350.Vt cmsghdr
351structures followed by corresponding values.
352.Va cmsg_level
353is set to
354.Dv IPPROTO_IPV6 ,
355.Va cmsg_type
356to one of the other values in this list, and trailing data to the option
357value.
358When setting options, if the length
359.Va optlen
360to
361.Xr setsockopt 2
362is zero, all header options will be reset to their default values.
363Otherwise, the length should specify the size the series of control
364messages consumes.
9bccf70c 365.Pp
91447636
A
366Instead of using
367.Xr sendmsg 2
368to specify option values, the ancillary data used in these calls that
369correspond to the desired header options may be directly specified as
370the control message in the series of control messages provided as the
371argument to
372.Xr setsockopt 2 .
373.It Dv IPV6_CHECKSUM Fa "int *"
374Get or set the byte offset into a packet where the 16-bit checksum is
375located.
376When set, this byte offset is where incoming packets will be expected
377to have checksums of their data stored and where outgoing packets will
378have checksums of their data computed and stored by the kernel.
379A value of \-1 specifies that no checksums will be checked on incoming
380packets and that no checksums will be computed or stored on outgoing
381packets.
382The offset of the checksum for ICMPv6 sockets cannot be relocated or
383turned off.
384.It Dv IPV6_V6ONLY Fa "int *"
385Get or set whether only IPv6 connections can be made to this socket.
386For wildcard sockets, this can restrict connections to IPv6 only.
387.\"With
388.\".Ox
389.\"IPv6 sockets are always IPv6-only, so the socket option is read-only
390.\"(not modifiable).
316670eb
A
391.\".It Dv IPV6_FAITH Fa "int *"
392.\"Get or set the status of whether
393.\".Xr faith 4
394.\"connections can be made to this socket.
91447636
A
395.It Dv IPV6_USE_MIN_MTU Fa "int *"
396Get or set whether the minimal IPv6 maximum transmission unit (MTU) size
397will be used to avoid fragmentation from occurring for subsequent
398outgoing datagrams.
91447636 399.El
9bccf70c 400.Pp
91447636 401The
9bccf70c 402.Dv IPV6_PKTINFO ,
91447636 403.\" .Dv IPV6_NEXTHOP ,
9bccf70c
A
404.Dv IPV6_HOPLIMIT ,
405.Dv IPV6_HOPOPTS ,
406.Dv IPV6_DSTOPTS ,
407and
91447636
A
408.Dv IPV6_RTHDR
409options will return ancillary data along with payload contents in subsequent
410.Xr recvmsg 2
411calls with
412.Va cmsg_level
413set to
414.Dv IPPROTO_IPV6
9bccf70c 415and
91447636
A
416.Va cmsg_type
417set to respective option name value (e.g.,
418.Dv IPV6_HOPTLIMIT ) .
419These options may also be used directly as ancillary
420.Va cmsg_type
421values in
9bccf70c 422.Xr sendmsg 2
91447636
A
423to set options on the packet being transmitted by the call.
424The
425.Va cmsg_level
426value must be
427.Dv IPPROTO_IPV6 .
428For these options, the ancillary data object value format is the same
429as the value returned as explained for each when received with
430.Xr recvmsg 2 .
431.Pp
432Note that using
9bccf70c 433.Xr sendmsg 2
91447636
A
434to specify options on particular packets works only on UDP and raw sockets.
435To manipulate header options for packets on TCP sockets, only the socket
436options may be used.
437.Pp
438In some cases, there are multiple APIs defined for manipulating an IPv6
439header field.
440A good example is the outgoing interface for multicast datagrams, which
441can be set by the
9bccf70c 442.Dv IPV6_MULTICAST_IF
91447636 443socket option, through the
9bccf70c 444.Dv IPV6_PKTINFO
91447636
A
445option, and through the
446.Va sin6_scope_id
447field of the socket address passed to the
448.Xr sendto 2
449system call.
450.Pp
451Resolving these conflicts is implementation dependent.
452This implementation determines the value in the following way:
453options specified by using ancillary data (i.e.,
454.Xr sendmsg 2 )
455are considered first,
456options specified by using
457.Dv IPV6_PKTOPTIONS
458to set
459.Dq sticky
460options are considered second,
461options specified by using the individual, basic, and direct socket
462options (e.g.,
463.Dv IPV6_UNICAST_HOPS )
464are considered third,
465and options specified in the socket address supplied to
466.Xr sendto 2
467are the last choice.
468.Ss Multicasting
469IPv6 multicasting is supported only on
470.Dv AF_INET6
471sockets of type
472.Dv SOCK_DGRAM
473and
474.Dv SOCK_RAW ,
475and only on networks where the interface driver supports
476multicasting.
477Socket options (see above) that manipulate membership of
478multicast groups and other multicast options include
479.Dv IPV6_MULTICAST_IF ,
480.Dv IPV6_MULTICAST_HOPS ,
481.Dv IPV6_MULTICAST_LOOP ,
482.Dv IPV6_LEAVE_GROUP ,
483and
484.Dv IPV6_JOIN_GROUP .
485.Ss Raw Sockets
486Raw IPv6 sockets are connectionless and are normally used with the
9bccf70c
A
487.Xr sendto 2
488and
489.Xr recvfrom 2
91447636 490calls, although the
9bccf70c 491.Xr connect 2
91447636
A
492call may be used to fix the destination address for future outgoing
493packets so that
9bccf70c 494.Xr send 2
91447636
A
495may instead be used and the
496.Xr bind 2
497call may be used to fix the source address for future outgoing
498packets instead of having the kernel choose a source address.
9bccf70c 499.Pp
91447636
A
500By using
501.Xr connect 2
502or
503.Xr bind 2 ,
504raw socket input is constrained to only packets with their
505source address matching the socket destination address if
506.Xr connect 2
507was used and to packets with their destination address
508matching the socket source address if
509.Xr bind 2
510was used.
511.Pp
512If the
513.Ar proto
514argument to
9bccf70c 515.Xr socket 2
91447636
A
516is zero, the default protocol
517.Pq Dv IPPROTO_RAW
518is used for outgoing packets.
519For incoming packets, protocols recognized by kernel are
520.Sy not
521passed to the application socket (e.g.,
522.Xr tcp 4
523and
524.Xr udp 4 )
525except for some ICMPv6 messages.
526The ICMPv6 messages not passed to raw sockets include echo, timestamp,
527and address mask requests.
528If
529.Ar proto
530is non-zero, only packets with this protocol will be passed to the
531socket.
9bccf70c 532.Pp
91447636
A
533IPv6 fragments are also not passed to application sockets until
534they have been reassembled.
535If reception of all packets is desired, link-level access (such as
536.Xr bpf 4 )
537must be used instead.
538.Pp
539Outgoing packets automatically have an IPv6 header prepended to them
540(based on the destination address and the protocol number the socket
541was created with).
542Incoming packets are received by an application without the IPv6 header
543or any extension headers.
544.Pp
545Outgoing packets will be fragmented automatically by the kernel if they
546are too large.
547Incoming packets will be reassembled before being sent to the raw socket,
548so packet fragments or fragment headers will never be seen on a raw socket.
549.Sh EXAMPLES
550The following determines the hop limit on the next packet received:
551.Bd -literal
552struct iovec iov[2];
553u_char buf[BUFSIZ];
554struct cmsghdr *cm;
555struct msghdr m;
556int found, optval;
557u_char data[2048];
558
559/* Create socket. */
560
561(void)memset(&m, 0, sizeof(m));
562(void)memset(&iov, 0, sizeof(iov));
563
564iov[0].iov_base = data; /* buffer for packet payload */
565iov[0].iov_len = sizeof(data); /* expected packet length */
566
567m.msg_name = &from; /* sockaddr_in6 of peer */
568m.msg_namelen = sizeof(from);
569m.msg_iov = iov;
570m.msg_iovlen = 1;
571m.msg_control = (caddr_t)buf; /* buffer for control messages */
572m.msg_controllen = sizeof(buf);
573
574/*
575 * Enable the hop limit value from received packets to be
576 * returned along with the payload.
577 */
578optval = 1;
579if (setsockopt(s, IPPROTO_IPV6, IPV6_HOPLIMIT, &optval,
580 sizeof(optval)) == -1)
581 err(1, "setsockopt");
582
583found = 0;
584while (!found) {
585 if (recvmsg(s, &m, 0) == -1)
586 err(1, "recvmsg");
587 for (cm = CMSG_FIRSTHDR(&m); cm != NULL;
588 cm = CMSG_NXTHDR(&m, cm)) {
589 if (cm->cmsg_level == IPPROTO_IPV6 &&
590 cm->cmsg_type == IPV6_HOPLIMIT &&
591 cm->cmsg_len == CMSG_LEN(sizeof(int))) {
592 found = 1;
593 (void)printf("hop limit: %d\en",
594 *(int *)CMSG_DATA(cm));
595 break;
596 }
597 }
598}
9bccf70c 599.Ed
91447636 600.Sh DIAGNOSTICS
9bccf70c 601A socket operation may fail with one of the following errors returned:
91447636 602.Bl -tag -width EADDRNOTAVAILxx
9bccf70c 603.It Bq Er EISCONN
91447636
A
604when trying to establish a connection on a socket which
605already has one or when trying to send a datagram with the destination
606address specified and the socket is already connected.
9bccf70c 607.It Bq Er ENOTCONN
91447636
A
608when trying to send a datagram, but
609no destination address is specified, and the socket hasn't been
610connected.
9bccf70c 611.It Bq Er ENOBUFS
91447636
A
612when the system runs out of memory for
613an internal data structure.
9bccf70c 614.It Bq Er EADDRNOTAVAIL
91447636
A
615when an attempt is made to create a
616socket with a network address for which no network interface
617exists.
9bccf70c 618.It Bq Er EACCES
91447636
A
619when an attempt is made to create
620a raw IPv6 socket by a non-privileged process.
9bccf70c
A
621.El
622.Pp
91447636
A
623The following errors specific to IPv6 may occur when setting or getting
624header options:
9bccf70c
A
625.Bl -tag -width EADDRNOTAVAILxx
626.It Bq Er EINVAL
627An unknown socket option name was given.
628.It Bq Er EINVAL
91447636 629An ancillary data object was improperly formed.
9bccf70c 630.El
9bccf70c
A
631.Sh SEE ALSO
632.Xr getsockopt 2 ,
633.Xr recv 2 ,
634.Xr send 2 ,
635.Xr setsockopt 2 ,
91447636
A
636.Xr socket 2 ,
637.\" .Xr inet6_option_space 3 ,
638.\" .Xr inet6_rthdr_space 3 ,
639.Xr if_nametoindex 3 ,
640.Xr bpf 4 ,
9bccf70c
A
641.Xr icmp6 4 ,
642.Xr inet6 4 ,
91447636
A
643.Xr netintro 4 ,
644.Xr tcp 4 ,
645.Xr udp 4
9bccf70c
A
646.Rs
647.%A W. Stevens
648.%A M. Thomas
91447636
A
649.%T Advanced Sockets API for IPv6
650.%R RFC 2292
9bccf70c 651.%D February 1998
9bccf70c
A
652.Re
653.Rs
654.%A S. Deering
655.%A R. Hinden
91447636
A
656.%T Internet Protocol, Version 6 (IPv6) Specification
657.%R RFC 2460
9bccf70c 658.%D December 1998
9bccf70c
A
659.Re
660.Rs
661.%A R. Gilligan
662.%A S. Thomson
663.%A J. Bound
664.%A W. Stevens
91447636
A
665.%T Basic Socket Interface Extensions for IPv6
666.%R RFC 2553
9bccf70c 667.%D March 1999
9bccf70c 668.Re
91447636
A
669.Rs
670.%A W. Stevens
671.%A B. Fenner
672.%A A. Rudoff
673.%T UNIX Network Programming, third edition
674.Re
9bccf70c 675.Sh STANDARDS
91447636
A
676Most of the socket options are defined in RFC 2292 or RFC 2553.
677The
9bccf70c 678.Dv IPV6_V6ONLY
91447636 679socket option is defined in RFC 3542.
9bccf70c 680The
91447636
A
681.Dv IPV6_PORTRANGE
682socket option and the conflict resolution rule are not defined in the
683RFCs and should be considered implementation dependent.