fix constants

This commit is contained in:
Brendan O'Dea 2005-11-25 04:23:55 +00:00
parent 9ca5c6e72e
commit 9b6a5ea4b3

View file

@ -15,8 +15,8 @@ use constant ICMP_CODE => 0; # No ICMP code for ECHO and ECHOREPLY
use constant SOL_IP => 0;
use constant IP_MTU_DISCOVER => 10;
use constant IP_PMTUDISC_WANT => 0;
use constant IP_PMTUDISC_DONT => 1;
use constant IP_PMTUDISC_DONT => 0;
use constant IP_PMTUDISC_WANT => 1;
use constant IP_PMTUDISC_DO => 2;
my $verbose = shift if @ARGV and $ARGV[0] =~ /^--?v(erbose)?$/;