Changeset 1242

Show
Ignore:
Timestamp:
09/13/08 09:18:44 (3 months ago)
Author:
mbr
Message:

removed Net::IPv4Addr dependency for the fwknop client and knoptm daemon, and updated the ChangeLog? for 1.9.8

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • fwknop/trunk/CREDITS

    r1240 r1242  
    164164    - Suggested 0600 permissions mode on all <proc>.pid files in 
    165165      /var/run/fwknop/ 
     166    - Suggested removing the Net::IPv4Addr dependency in the fwknop client 
     167      and in the knoptm daemon since functions from this module were never 
     168      actually used. 
    166169 
    167170Jose Luis Bellido 
  • fwknop/trunk/ChangeLog

    r1232 r1242  
     1fwknop-1.9.8 (09//2008): 
     2    - Added --Save-packet-append to allow SPA packets to be appended to the 
     3      --Save-packet-file in --Save-packet mode.  This allows multiple SPA 
     4      packets to more easily be stored for closer examination (i.e. to make 
     5      sure randomness is high or to test encryption properties over large 
     6      sets of SPA packets). 
     7    - Bugfix to ensure that the permissions for the 
     8      /var/run/fwknop/knopwatchd.pid file are set to 0600 (noticed by Franck 
     9      Joncourt). 
     10    - Bugfix to remove the Net::IPv4Addr dependency in the fwknop client and 
     11      knoptm daemon (Franck Joncourt). 
     12 
    113fwknop-1.9.7 (08/24/2008): 
    214    - Mirek Trmac from Red Hat contributed several patches so that fwknop can 
  • fwknop/trunk/fwknop

    r1241 r1242  
    14121412    require Term::ReadKey; 
    14131413    Term::ReadKey->import(qw/ReadMode ReadLine/); 
    1414  
    1415     require Net::IPv4Addr; 
    1416     Net::IPv4Addr->import(qw/ipv4_in_network/); 
    14171414 
    14181415    if ($debug) { 
  • fwknop/trunk/knoptm

    r1232 r1242  
    867867        unless $config{'ALERTING_METHODS'} =~ /no.?syslog/i; 
    868868 
    869     require Net::IPv4Addr; 
    870     Net::IPv4Addr->import(qw/ipv4_in_network/); 
    871  
    872869    return; 
    873870}