update from main archive 970124
[glibc.git] / sysdeps / unix / sysv / linux / socketbits.h
blobe9c88758e525f80e71c64d7a9cb55256f39e471e
1 /* System-specific socket constants and types. Linux version.
2 Copyright (C) 1991, 92, 94, 95, 96, 97 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #ifndef _SOCKETBITS_H
22 #define _SOCKETBITS_H 1
23 #include <features.h>
25 #define __need_size_t
26 #include <stddef.h>
29 __BEGIN_DECLS
31 /* Types of sockets. */
32 enum __socket_type
34 SOCK_STREAM = 1, /* Sequenced, reliable, connection-based
35 byte streams. */
36 #define SOCK_STREAM SOCK_STREAM
37 SOCK_DGRAM = 2, /* Connectionless, unreliable datagrams
38 of fixed maximum length. */
39 #define SOCK_DGRAM SOCK_DGRAM
40 SOCK_RAW = 3, /* Raw protocol interface. */
41 #define SOCK_RAW SOCK_RAW
42 SOCK_RDM = 4, /* Reliably-delivered messages. */
43 #define SOCK_RDM SOCK_RDM
44 SOCK_SEQPACKET = 5, /* Sequenced, reliable, connection-based,
45 datagrams of fixed maximum length. */
46 #define SOCK_SEQPACKET SOCK_SEQPACKET
47 SOCK_PACKET = 10 /* Linux specific way of getting packets
48 at the dev level. For writing rarp and
49 other similar things on the user level. */
50 #define SOCK_PACKET SOCK_PACKET
53 /* Protocol families. */
54 #define PF_UNSPEC 0 /* Unspecified. */
55 #define PF_LOCAL 1 /* Local to host (pipes and file-domain). */
56 #define PF_UNIX PF_LOCAL /* Old BSD name for PF_LOCAL. */
57 #define PF_INET 2 /* IP protocol family. */
58 #define PF_AX25 3 /* Amateur Radio AX.25. */
59 #define PF_IPX 4 /* Novell Internet Protocol. */
60 #define PF_APPLETALK 5 /* Don't use this. */
61 #define PF_NETROM 6 /* Amateur radio NetROM. */
62 #define PF_BRIDGE 7 /* Multiprotocol bridge. */
63 #define PF_AAL5 8 /* Reserved for Werner's ATM. */
64 #define PF_X25 9 /* Reserved for X.25 project. */
65 #define PF_INET6 10 /* IP version 6. */
66 #define PF_MAX 12 /* For now.. */
68 /* Address families. */
69 #define AF_UNSPEC PF_UNSPEC
70 #define AF_LOCAL PF_LOCAL
71 #define AF_UNIX PF_UNIX
72 #define AF_INET PF_INET
73 #define AF_AX25 PF_AX25
74 #define AF_IPX PF_IPX
75 #define AF_APPLETALK PF_APPLETALK
76 #define AF_NETROM PF_NETROM
77 #define AF_BRIDGE PF_BRIDGE
78 #define AF_AAL5 PF_AAL5
79 #define AF_X25 PF_X25
80 #define AF_INET6 PF_INET6
81 #define AF_MAX PF_MAX
85 /* Maximum queue length specifiable by listen. */
86 #define SOMAXCONN 128
88 /* Get the definition of the macro to define the common sockaddr members. */
89 #include <sockaddrcom.h>
91 /* Structure describing a generic socket address. */
92 struct sockaddr
94 __SOCKADDR_COMMON (sa_); /* Common data: address family and length. */
95 char sa_data[14]; /* Address data. */
99 /* Bits in the FLAGS argument to `send', `recv', et al. */
100 enum
102 MSG_OOB = 0x01, /* Process out-of-band data. */
103 MSG_PEEK = 0x02, /* Peek at incoming messages. */
104 MSG_DONTROUTE = 0x04, /* Don't use local routing. */
105 MSG_CTRUNC = 0x08, /* Control data lost before delivery. */
106 MSG_PROXY = 0x10 /* Supply or ask second address. */
110 /* Structure describing messages sent by
111 `sendmsg' and received by `recvmsg'. */
112 struct msghdr
114 __ptr_t msg_name; /* Address to send to/receive from. */
115 int msg_namelen; /* Length of address data. */
116 /* XXX Should be type `size_t' according to POSIX.1g. */
118 struct iovec *msg_iov; /* Vector of data to send/receive into. */
119 int msg_iovlen; /* Number of elements in the vector. */
120 /* XXX Should be type `size_t' according to POSIX.1g. */
122 __ptr_t msg_control; /* Ancillary data (eg BSD filedesc passing). */
123 int msg_controllen; /* Ancillary data buffer length. */
124 /* XXX Should be type `size_t' according to POSIX.1g. */
125 int msg_flags; /* Flags on received message. */
129 /* Get socket manipulation related informations from kernel headers. */
130 #include <asm/socket.h>
133 /* Structure used to manipulate the SO_LINGER option. */
134 struct linger
136 int l_onoff; /* Nonzero to linger on close. */
137 int l_linger; /* Time to linger. */
140 __END_DECLS
142 #endif /* socketbits.h */