Tagged Questions

0
votes
1answer
157 views

Unpacking big-endian encoded port number

I'm trying to convert a big-endian 2 byte string into a numeric port number. I've already got some code, but I have no idea if it's right: from struct import unpack def unpack_port(big_endian-port): ...