Skip to content

Commit 4850d38

Browse files
committed
Version 1.4.1
- Remove dead tunnels. - Tunneling on by default. - Upgrade to latest WinDivert. - Fix file handling bugs.
1 parent 9e6551c commit 4850d38

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.0
1+
1.4.1

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ make client_install
4343
make server_install
4444

4545
# Build Windows 64/32-bit
46-
DIVERT_VERSION=WinDivert-1.4.0-rc-A-MINGW
46+
DIVERT_VERSION=WinDivert-1.4.3-A
4747
set +x
4848
if [ "$DIVERT" = "" ]
4949
then

src/http_server.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,10 @@ static http_buffer_t http_lookup_static_data(const char *name)
8989
return NULL;
9090
}
9191
http_buffer_t buff = http_buffer_open();
92-
buff->size = strlen(data->data);
92+
buff->size = data->size;
9393
buff->put_pos = buff->size;
9494
buff->buff = (char *)data->data;
95+
buff->dynamic = false;
9596
return buff;
9697
}
9798

src/install/install.cache

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Installed tunnel cache
22
# AUTOMATICALLY GENERATED, DO NOT EDIT
33

4-
udp://191.101.180.77:31111?crypt=cipher.aes,cert.JnWvfd1nOJEA55p6uJNuRF,sec.2888 16 1
5-
udp://191.101.180.77:29989?crypt=cipher.xxtea,cert.a5p7i0RZlcs8y58ersfl75,sec.2888 16 1
6-
udp://tunnel.reqrypt.org:31111?crypt=cipher.aes,cert.JnWvfd1nOJEA55p6uJNuRF,sec.2888 16 1
7-
udp://tunnel.reqrypt.org:29989?crypt=cipher.xxtea,cert.a5p7i0RZlcs8y58ersfl75,sec.2888 16 1
84
udp://109.248.168.126:48168?crypt=cipher.aes,cert.loWNhcG7iQwVbQS44EidtM,sec.2888 16 1
95
udp://taiga.reqrypt.org:48168?crypt=cipher.aes,cert.loWNhcG7iQwVbQS44EidtM,sec.2888 16 1
106

src/install/install.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
ENABLED = "true"
55
HIDE_TCP = "true"
6-
HIDE_TCP_DATA = "true"
6+
HIDE_TCP_DATA = "false"
77
HIDE_TCP_SYN = "set"
88
HIDE_TCP_ACK = "set"
99
HIDE_TCP_PSH = "set"
1010
HIDE_TCP_FIN = "set"
1111
HIDE_TCP_RST = "set"
1212
HIDE_UDP = "false"
13-
TUNNEL = "false"
13+
TUNNEL = "true"
1414
MULTI_ROUTE = "false"
15-
SPLIT_MODE = "partial"
15+
SPLIT_MODE = "none"
1616
LOG_LEVEL = "packets"
1717
GHOST_MODE = "nat"
1818
GHOST_CHECK = "true"

src/tools/client.deb/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: reqrypt
2-
Version: 1.4
2+
Version: 1.4.1
33
Maintainer: Basil <[email protected]>
44
Section: net
55
Priority: optional

src/tools/file2c.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ int main(int argc, char **argv)
130130
fputs("{\n", stdout);
131131
fputs("\tconst char *name;\n", stdout);
132132
fputs("\tconst char *data;\n", stdout);
133+
fputs("\tsize_t size;\n", stdout);
133134
fputs("};\n", stdout);
134135
fputs("static int file_data_s_compare(const void *a, const void *b)\n",
135136
stdout);
@@ -147,7 +148,9 @@ int main(int argc, char **argv)
147148
print_symbol(argv[i]);
148149
printf("\n\t{\"%s\", ", argv[i]);
149150
print_symbol(argv[i]);
150-
fputs("},\n", stdout);
151+
fputs(", sizeof(", stdout);
152+
print_symbol(argv[i]);
153+
fputs(")-1},\n", stdout);
151154
fputs("#endif\n", stdout);
152155
}
153156
fputs("};\n", stdout);

src/tools/server.deb/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: reqryptd
2-
Version: 1.4
2+
Version: 1.4.1
33
Maintainer: Basil <[email protected]>
44
Section: net
55
Priority: optional

0 commit comments

Comments
 (0)