Help for this page

Select Code to Download


  1. or download this
    ($flag1, $bytecount, $mystery, $flag2) = $frame =~ m{
      ^
    ...
      ( [01]{8} )
      $
    }x;
    
  2. or download this
    ($flag1, $bytecount, $mystery) = unpack "A8 A16 A*", $frame;
    $flag2 = substr($mystery, -8, 8, '');