-
-
Save anonymous/447adff2f7dd75d8fa271d52c6c7e060 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chunk_actual_count = reader.message[8..11].unpack('L<') | |
chunk_actual_count = (reader.message[ 8].ord << 0) \ | |
| (reader.message[ 9].ord << 8) \ | |
| (reader.message[10].ord << 16) \ | |
| (reader.message[11].ord << 24) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment