diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-04-30 14:47:06 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-04-30 14:47:06 -0400 |
commit | 468bc11ed059c475f974920ac3d499e6071a6b2c (patch) | |
tree | ed6300c446d2818ffa7cbe8380d495dacc20ec7f /arch/mips/bits | |
parent | 23d64182d8328c300b368446aad20da9cec91aa3 (diff) | |
download | musl-468bc11ed059c475f974920ac3d499e6071a6b2c.tar.gz musl-468bc11ed059c475f974920ac3d499e6071a6b2c.tar.xz musl-468bc11ed059c475f974920ac3d499e6071a6b2c.zip |
fix missing SO_RCVBUFFORCE and SO_SNDBUFFORCE in mips socket.h
Diffstat (limited to 'arch/mips/bits')
-rw-r--r-- | arch/mips/bits/socket.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/bits/socket.h b/arch/mips/bits/socket.h index ba790452..fe5bad99 100644 --- a/arch/mips/bits/socket.h +++ b/arch/mips/bits/socket.h @@ -31,7 +31,6 @@ struct cmsghdr #define SO_RCVBUF 0x1002 #define SO_KEEPALIVE 8 #define SO_OOBINLINE 256 - #define SO_NO_CHECK 11 #define SO_PRIORITY 12 #define SO_LINGER 128 @@ -43,6 +42,8 @@ struct cmsghdr #define SO_SNDLOWAT 0x1003 #define SO_RCVTIMEO 0x1006 #define SO_SNDTIMEO 0x1005 +#define SO_SNDBUFFORCE 31 +#define SO_RCVBUFFORCE 33 #define SOCK_NONBLOCK 0200 #define SOCK_CLOEXEC 02000000 |