diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-01-03 14:19:37 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-01-03 14:19:37 +0100 |
commit | 05442a9cdc3feaecfe27ed537b36de81818ae522 (patch) | |
tree | 34590989b716e28168b63ec71fb1694feb92fd04 /src/basic | |
parent | edcd8ae3abf7b28dd9d572b55a34589f4da5f055 (diff) | |
parent | 62bc4efc7a617791d43f4e6cbef857554e6dbe2e (diff) |
Merge pull request #2245 from ssahani/socket1
core: socket options fix SCTP_NODELAY
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/missing.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/basic/missing.h b/src/basic/missing.h index d539ed00e4..880e724cb4 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -131,6 +131,10 @@ #define NETLINK_LIST_MEMBERSHIPS 9 #endif +#ifndef SOL_SCTP +#define SOL_SCTP 132 +#endif + #if !HAVE_DECL_PIVOT_ROOT static inline int pivot_root(const char *new_root, const char *put_old) { return syscall(SYS_pivot_root, new_root, put_old); |