diff options
author | MilhouseVH <MilhouseVH@users.noreply.github.com> | 2018-02-05 05:26:57 +0000 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-02-05 14:26:57 +0900 |
commit | ec79af69a1d159a43deb68c9ec1c31fe89743b6f (patch) | |
tree | e7e914a8bb8e1819249553a91d962703318ac25a /src/basic | |
parent | cf6e1e6333cd55e8961f0ca4a932e48e96cd2b91 (diff) | |
download | systemd-ec79af69a1d159a43deb68c9ec1c31fe89743b6f.tar.gz |
kernel 3.10 compat: RTAX_QUICKACK not added until 3.11.0 (#8094)
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 1280e6c410..9d4d08e7a9 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -1047,6 +1047,10 @@ struct input_mask { #define RTA_PREF 20 #endif +#ifndef RTAX_QUICKACK +#define RTAX_QUICKACK 15 +#endif + #ifndef IPV6_UNICAST_IF #define IPV6_UNICAST_IF 76 #endif |