Help for this page

Select Code to Download


  1. or download this
    use 5.006;
  2. or download this
    sub new {
        my $package = shift;
        my %attributes = %{ shift() };
    ...
          or die "Attribute list malformatted";
        bless { %botInfo }, $package;
      }
    
  3. or download this
    for (qw/ name prefix server password port channel /) {
      $attributes{$_} or die "Missing attribute '$_'";
    }