Help for this page

Select Code to Download


  1. or download this
    print $switch $byte        # prints one byte to the telnet connection.
    +  Confirmed as written by checking DUMP file
    sysread($switch, $byte2, 1)    # reads in one byte from the telnet inp
    +ut buffer.
    
  2. or download this
    -print $switch $byte
    +$switch->put($byte); ( telnet method )
    
  3. or download this
    -while (sysread($switch, $byte2, 1))
    -{
    -    print $client $byte2;    
    -}
    +sleep(50)
    
  4. or download this
    #!/opt/DKBperl/bin/perl
    $|=1;
    ...
        print "..ok\n";
        return $t;
    }