We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b95c45e commit 46db057Copy full SHA for 46db057
src/goodbyedpi.c
@@ -21,6 +21,8 @@
21
// My mingw installation does not load inet_pton definition for some reason
22
WINSOCK_API_LINKAGE INT WSAAPI inet_pton(INT Family, LPCSTR pStringBuf, PVOID pAddr);
23
24
+#define GOODBYEDPI_VERSION "v0.1.5"
25
+
26
#define die() do { sleep(20); exit(EXIT_FAILURE); } while (0)
27
28
#define MAX_FILTERS 4
@@ -396,7 +398,8 @@ int main(int argc, char *argv[]) {
396
398
filter_passive_string = strdup(FILTER_PASSIVE_STRING_TEMPLATE);
397
399
400
printf(
- "GoodbyeDPI: Passive DPI blocker and Active DPI circumvention utility\n"
401
+ "GoodbyeDPI " GOODBYEDPI_VERSION
402
+ ": Passive DPI blocker and Active DPI circumvention utility\n"
403
"https://github.com/ValdikSS/GoodbyeDPI\n\n"
404
);
405
0 commit comments