aboutsummaryrefslogtreecommitdiff
path: root/net/httping/patches/001-fix-musl.patch
blob: 1f45578bf3bbf928f1a08933e49594288fe0ab58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/main.c
+++ b/main.c
@@ -33,6 +33,11 @@
 #include <ncurses.h>
 #endif
 
+// musl has no this constant
+#ifndef TCPI_OPT_SYN_DATA
+#define TCPI_OPT_SYN_DATA 32
+#endif
+
 #include "gen.h"
 #include "help.h"
 #include "colors.h"