Help for this page

Select Code to Download


  1. or download this
    sub relay{
        my $self = shift;
        if(!ref($self)){
    ...
    
        }
    }
    
  2. or download this
    open my $fh,'<',$request_file_name;
            my $params;
            eval{$params = fd_retrieve($fh)};
    ...
                close $fh;
                redo;
            }
    
  3. or download this
     my $recsock;
            while(!defined $recsock){
            eval{$recsock =
    ...
    while(<$recsock>){
            print "received $_";
        }
    
  4. or download this
    my $c = 0;
        print"creating socket\n";
        my $sock;
    ...
            print $sock $data or croak "$!";
            $c++;
         }
    
  5. or download this
    $messenger_params{input}->{fh} = IO::Socket::INET->new(
                        Listen=>$params->{input}->{Listen},
                        LocalAddr=>$params->{input}->{loca_addr},
    ...
                                Listen=>$params->{output}->{$key}->{listen
    +},
                            )or croak "$!";