import io
import socket
def _get_pairs(data):
stream = io.BytesIO(data)
while True:
b = stream.read(2)
if not b:
return
yield b
[docs]def unpack_ipv6(data):
return ':'.join(
'{0:02x}{1:02x}'.format(ord(x), ord(y))
for (x, y) in _get_pairs(data))