diff options
-rw-r--r-- | linux_dep.h | 6 | ||||
-rw-r--r-- | passt-repair.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/linux_dep.h b/linux_dep.h index 240f50a..1d9e166 100644 --- a/linux_dep.h +++ b/linux_dep.h @@ -135,6 +135,12 @@ struct tcp_info_linux { #define CLOSE_RANGE_UNSHARE (1U << 1) #endif +#ifndef TCP_REPAIR_ON +#define TCP_REPAIR_ON 1 +#define TCP_REPAIR_OFF 0 +#define TCP_REPAIR_OFF_NO_WP -1 /* Turn off without window probes */ +#endif + __attribute__ ((weak)) /* cppcheck-suppress funcArgNamesDifferent */ int close_range(unsigned int first, unsigned int last, int flags) { diff --git a/passt-repair.c b/passt-repair.c index 8c59d7e..c3c140f 100644 --- a/passt-repair.c +++ b/passt-repair.c @@ -40,6 +40,7 @@ #include <linux/seccomp.h> #include "seccomp_repair.h" +#include "linux_dep.h" #define SCM_MAX_FD 253 /* From Linux kernel (include/net/scm.h), not in UAPI */ #define REPAIR_EXT ".repair" |