Changeset 985
- Timestamp:
- 01/27/08 20:45:46 (10 months ago)
- Files:
-
- fwknop/trunk/ChangeLog (modified) (1 diff)
- fwknop/trunk/VERSION (modified) (1 diff)
- fwknop/trunk/fwknop (modified) (2 diffs)
- fwknop/trunk/fwknopd (modified) (5 diffs)
- fwknop/trunk/knoptm (modified) (2 diffs)
- fwknop/trunk/knopwatchd.c (modified) (1 diff)
- fwknop/trunk/test/fwknop_test.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fwknop/trunk/ChangeLog
r979 r985 1 fwknop-1.9.2 (02//2008): 2 - Added full packet hex dumps (including packet headers) to fwknopd in 3 --debug --verbose mode. This is to help diagnose packet sniffing issues 4 over the loopback interface on Mac OS X (first reported by Sebastien 5 Jeanquier). 6 1 7 fwknop-1.9.1 (01/26/2008): 2 8 - Added ENABLE_OUTPUT_ACCESS keyword to access.conf file parsing. This fwknop/trunk/VERSION
r979 r985 1 1.9. 11 1.9.2-pre1 fwknop/trunk/fwknop
r979 r985 17 17 # Author: Michael Rash (mbr@cipherdyne.org) 18 18 # 19 # Version: 1.9. 119 # Version: 1.9.2-pre1 20 20 # 21 21 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) … … 52 52 use strict; 53 53 54 my $version = '1.9. 1';54 my $version = '1.9.2-pre1'; 55 55 my $revision_svn = '$Revision$'; 56 56 my $rev_num = '1'; fwknop/trunk/fwknopd
r979 r985 20 20 # Author: Michael Rash (mbr@cipherdyne.org) 21 21 # 22 # Version: 1.9. 122 # Version: 1.9.2-pre1 23 23 # 24 24 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) … … 63 63 my $access_conf_file = ''; 64 64 65 my $version = '1.9. 1';65 my $version = '1.9.2-pre1'; 66 66 my $revision_svn = '$Revision$'; 67 67 my $rev_num = '1'; … … 332 332 my $transport_obj = ''; 333 333 334 if ($debug) { 335 print STDERR localtime() . " [+] Received packet ***[" . 336 localtime() . "]***\n"; 337 if ($verbose) { 338 print STDERR localtime() . 339 " Complete raw packet data (hex dump, including ", 340 "packet headers):\n"; 341 &hex_dump($pkt); 342 } 343 } 344 334 345 if ($config{'AUTH_MODE'} eq 'ULOG_PCAP') { 335 346 ### The ulogd pcap writer does not include link layer information … … 365 376 } 366 377 367 print STDERR localtime() . " [+] Received packet ***[" .368 localtime() . "]*** (" if $debug;369 370 378 ### make sure we have _some_ data in the packet; in practice 371 379 ### any valid SPA message will be longer than 10 bytes, but this … … 376 384 $enc_msg_len = length($transport_obj->{'data'}); 377 385 if (10 < $enc_msg_len and $enc_msg_len < 1500) { 378 print STDERR "$enc_msg_len bytes)\n" if $debug; 386 print STDERR localtime() . " [+] Data len: $enc_msg_len bytes\n" 387 if $debug; 379 388 } else { 380 print STDERR "$enc_msg_len bytes, not attempting decrypt)\n"381 if $debug;389 print STDERR localtime() . " [-] $enc_msg_len bytes, not ", 390 "attempting decrypt)\n" if $debug; 382 391 return; 383 392 } fwknop/trunk/knoptm
r979 r985 19 19 # Author: Michael Rash (mbr@cipherdyne.org) 20 20 # 21 # Version: 1.9. 121 # Version: 1.9.2-pre1 22 22 # 23 23 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) … … 54 54 my $user_rc_file = ''; 55 55 56 my $version = '1.9. 1';56 my $version = '1.9.2-pre1'; 57 57 my $revision_svn = '$Revision$'; 58 58 my $rev_num = '1'; fwknop/trunk/knopwatchd.c
r979 r985 14 14 * Credits: (see the CREDITS file) 15 15 * 16 * Version: 1.9. 116 * Version: 1.9.2-pre1 17 17 * 18 18 * Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) fwknop/trunk/test/fwknop_test.pl
r979 r985 10 10 # Author: Michael Rash (mbr@cipherdyne.org) 11 11 # 12 # Version: 1.9. 112 # Version: 1.9.2-pre1 13 13 # 14 14 # Copyright (C) 2007 Michael Rash (mbr@cipherdyne.org)
