Help for this page

Select Code to Download


  1. or download this
    int conn = socket(.....);
    
    ...
    LEAVE;
    
  2. or download this
    sub the_callback_function {
      my ($conn) = @_;
    ...
      $c->autoflush(1);
      $c->send("Network data!\n");
      .....
    
  3. or download this
    PerlIO* conn_pio;
    conn_pio = PerlIO_fdopen(conn,"r+");