blob: da3ec7e969c7b2e020b603d6d5e1e7c7b8ac373d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: openvpn-2.1.3/socket.c
===================================================================
--- openvpn-2.1.3.orig/socket.c 2010-09-29 13:08:31.548460785 +0200
+++ openvpn-2.1.3/socket.c 2010-09-29 13:11:08.149458043 +0200
@@ -1894,7 +1894,7 @@
if (sb->len < 1 || sb->len > sb->maxlen)
{
- msg (M_WARN, "WARNING: Bad encapsulated packet length from peer (%d), which must be > 0 and <= %d -- please ensure that --tun-mtu or --link-mtu is equal on both peers -- this condition could also indicate a possible active attack on the TCP link -- [Attemping restart...]", sb->len, sb->maxlen);
+ msg (M_WARN, "WARNING: Bad encapsulated packet length from peer (%d), which must be > 0 and <= %d -- please ensure that --tun-mtu or --link-mtu is equal on both peers -- this condition could also indicate a possible active attack on the TCP link -- [Attempting restart...]", sb->len, sb->maxlen);
stream_buf_reset (sb);
sb->error = true;
return false;
|