Help for this page

Select Code to Download


  1. or download this
    send( SOCKET, pack("C*",@array), 0, $paddr )
  2. or download this
    @array= unpack( "C*", $packet );
  3. or download this
    $packet= pack "b*", join "", @array;
    $packet= join "", map { pack "b8", $_ } @array;