Displaying 3 results from an estimated 3 matches for "debug_traff".
Did you mean:
  debug_traffic
  
2010 Sep 20
0
No subject
...3D 2,			/* Show error messages received from other hosts =
*/
 	DEBUG_STATUS =3D 2,			/* Show status messages received from other =
hosts */
-	DEBUG_PROTOCOL =3D 3,			/* Show the requests that are sent/received */
-	DEBUG_META =3D 4,				/* Show contents of every request that is =
sent/received */
-	DEBUG_TRAFFIC =3D 5,			/* Show network traffic information */
-	DEBUG_PACKET =3D 6,			/* Show contents of each packet that is being =
sent/received */
-	DEBUG_SCARY_THINGS =3D 10		/* You have been warned */
+	DEBUG_PROTOCOL =3D 4,			/* Show the requests that are sent/received */
+	DEBUG_META =3D 8,				/* Show...
2018 Jan 16
3
Windows TAP driver issues
Thanks for the info, that is very helpful.  It does look like that
change got back-ported to master, albeit in a different form.
I'll take a look at how OpenVPN does its windows device I/O.
 - todd
2018 Oct 10
1
Question about path MTU / segfault
...y is dest->mtu 0 at this point?
Would it be useful to disable path MTU discovery? There should be no
unexpected MTU restrictions on the Internet paths between the nodes.
Thank you,
Werner
-------------- next part --------------
--- src/route.c.orig
+++ src/route.c
@@ -598,7 +598,7 @@
 	logger(DEBUG_TRAFFIC, LOG_INFO, "Fragmenting packet of %d bytes to %s (%s)", packet->len, dest->name, dest->hostname);
 
 	offset = DATA(packet) + ether_size + ip_size;
-	maxlen = (dest->mtu - ether_size - ip_size) & ~0x7;
+	maxlen = (MAX(dest->mtu, 590) - ether_size - ip_size) & ~0x7...