diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-05-16 10:32:49 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-05-16 10:32:49 +0000 |
commit | 840ea4e54f944971741e0bf4b1b9d9f6f417634d (patch) | |
tree | 883b1e4c6bf264329e39bd59f51805953d34059a /include/asm-sparc64 | |
parent | 7438179b9fdc54ef8d2d3f573db0ef253e3fdba9 (diff) |
Fix SOCK_ constant definitions for all architectures. Patch sent to
Linus. Our diffs relativ to Linus' latest and greatest is getting
fairly small now.
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r-- | include/asm-sparc64/socket.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/asm-sparc64/socket.h b/include/asm-sparc64/socket.h index 644f064b0..f88030301 100644 --- a/include/asm-sparc64/socket.h +++ b/include/asm-sparc64/socket.h @@ -47,4 +47,19 @@ #define SO_SECURITY_ENCRYPTION_TRANSPORT 0x5002 #define SO_SECURITY_ENCRYPTION_NETWORK 0x5004 +/* Nast libc5 fixup - bletch */ +#if defined(__KERNEL__) +/* Socket types. */ +#define SOCK_STREAM 1 /* stream (connection) socket */ +#define SOCK_DGRAM 2 /* datagram (conn.less) socket */ +#define SOCK_RAW 3 /* raw socket */ +#define SOCK_RDM 4 /* reliably-delivered message */ +#define SOCK_SEQPACKET 5 /* sequential packet socket */ +#define SOCK_PACKET 10 /* linux specific way of */ + /* getting packets at the dev */ + /* level. For writing rarp and */ + /* other similar things on the */ + /* user level. */ +#endif + #endif /* _ASM_SOCKET_H */ |