diff options
author | Roman Yeryomin <roman@ubnt.com> | 2015-07-02 12:29:00 +0300 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-07-21 19:14:58 -0400 |
commit | 3975577922aedab7d60788dd320a2c8e4e94bc6e (patch) | |
tree | 94b6d934bba0dc4eb8e4a7e8bd8a9d68438a90ce /arch/mips | |
parent | 29ec7677a73a5227badbb1064205be09e707e466 (diff) | |
download | musl-3975577922aedab7d60788dd320a2c8e4e94bc6e.tar.gz musl-3975577922aedab7d60788dd320a2c8e4e94bc6e.tar.bz2 musl-3975577922aedab7d60788dd320a2c8e4e94bc6e.tar.xz musl-3975577922aedab7d60788dd320a2c8e4e94bc6e.zip |
socket.h: cleanup/reorder mips and powerpc bits/socket.h
....to be somewhat consistent and easily comparable with asm/socket.h
Signed-off-by: Roman Yeryomin <roman@ubnt.com>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/bits/socket.h | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/arch/mips/bits/socket.h b/arch/mips/bits/socket.h index 22294f18..cc72dcf9 100644 --- a/arch/mips/bits/socket.h +++ b/arch/mips/bits/socket.h @@ -22,31 +22,33 @@ struct cmsghdr #define SOL_SOCKET 65535 #define SO_DEBUG 1 -#define SO_REUSEADDR 4 -#define SO_TYPE 0x1008 -#define SO_ERROR 0x1007 -#define SO_DONTROUTE 16 -#define SO_BROADCAST 32 + +#define SO_REUSEADDR 0x0004 +#define SO_KEEPALIVE 0x0008 +#define SO_DONTROUTE 0x0010 +#define SO_BROADCAST 0x0020 +#define SO_LINGER 0x0080 +#define SO_OOBINLINE 0x0100 +#define SO_REUSEPORT 0x0200 #define SO_SNDBUF 0x1001 #define SO_RCVBUF 0x1002 -#define SO_KEEPALIVE 8 -#define SO_OOBINLINE 256 +#define SO_SNDLOWAT 0x1003 +#define SO_RCVLOWAT 0x1004 +#define SO_RCVTIMEO 0x1006 +#define SO_SNDTIMEO 0x1005 +#define SO_ERROR 0x1007 +#define SO_TYPE 0x1008 +#define SO_ACCEPTCONN 0x1009 +#define SO_PROTOCOL 0x1028 +#define SO_DOMAIN 0x1029 + #define SO_NO_CHECK 11 #define SO_PRIORITY 12 -#define SO_LINGER 128 #define SO_BSDCOMPAT 14 -#define SO_REUSEPORT 512 #define SO_PASSCRED 17 #define SO_PEERCRED 18 -#define SO_RCVLOWAT 0x1004 -#define SO_SNDLOWAT 0x1003 -#define SO_RCVTIMEO 0x1006 -#define SO_SNDTIMEO 0x1005 #define SO_SNDBUFFORCE 31 #define SO_RCVBUFFORCE 33 -#define SO_ACCEPTCONN 0x1009 -#define SO_PROTOCOL 0x1028 -#define SO_DOMAIN 0x1029 #define SOCK_NONBLOCK 0200 #define SOCK_CLOEXEC 02000000 |