Help for this page

Select Code to Download


  1. or download this
    sub auth {
       my $username = shift @_;
       my $passwd = shift @_;
    
  2. or download this
    sub auth
    {
        my ($class, $username, $passwd) = @_;
    
        # ... more code here
    }