diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-19 07:50:13 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-19 07:50:13 +0000 |
commit | 7b0a8146c71e64f39256179208447807df00948b (patch) | |
tree | 6691e9c5d9cfc3bb09f9734c780826909ff53e33 /forward.c | |
parent | Merged with Alon's tree @ r660 (diff) | |
download | openvpn-7b0a8146c71e64f39256179208447807df00948b.tar.xz |
svn merge -r 670:672 $SO/trunk/openvpn
Brought up-to-date with 2.0.x branch.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@673 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'forward.c')
-rw-r--r-- | forward.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -899,10 +899,7 @@ process_incoming_tun (struct context *c) #endif /* Show packet content */ - dmsg (D_TUN_RW, "TUN READ [%d]: %s md5=%s", - BLEN (&c->c2.buf), - format_hex (BPTR (&c->c2.buf), BLEN (&c->c2.buf), 80, &gc), - MD5SUM (BPTR (&c->c2.buf), BLEN (&c->c2.buf), &gc)); + dmsg (D_TUN_RW, "TUN READ [%d]", BLEN (&c->c2.buf)); if (c->c2.buf.len > 0) { @@ -1118,10 +1115,7 @@ process_outgoing_tun (struct context *c) if (c->c2.log_rw) fprintf (stderr, "w"); #endif - dmsg (D_TUN_RW, "TUN WRITE [%d]: %s md5=%s", - BLEN (&c->c2.to_tun), - format_hex (BPTR (&c->c2.to_tun), BLEN (&c->c2.to_tun), 80, &gc), - MD5SUM (BPTR (&c->c2.to_tun), BLEN (&c->c2.to_tun), &gc)); + dmsg (D_TUN_RW, "TUN WRITE [%d]", BLEN (&c->c2.to_tun)); #ifdef PACKET_TRUNCATION_CHECK ipv4_packet_size_verify (BPTR (&c->c2.to_tun), |