Help for this page

Select Code to Download


  1. or download this
        *STDIN  = \*{ $prop->{client} };
        *STDOUT = \*{ $prop->{client} } if ! $prop->{client}->isa('IO::Soc
    +ket::SSL');
        # ...
        select(STDOUT);
    
  2. or download this
    my $fileno= fileno $prop->{client};
    if(  defined $fileno  ) {
    ...
        *STDIN= \*{ $prop->{client} };
        *STDOUT= \*{ $prop->{client} };
    }