• Home
  • Raw
  • Download

Lines Matching refs:byte_string

50         def unpack(byte_string):  argument
51 return struct.unpack(field_format, byte_string)[0]
84 def unpack(byte_string): argument
85 return socket.inet_ntoa(byte_string)
94 def unpack(byte_string): argument
95 return [socket.inet_ntoa(byte_string[idx:idx+4])
96 for idx in range(0, len(byte_string), 4)]
105 def unpack(byte_string): argument
106 return byte_string
115 def unpack(byte_string): argument
116 return [ord(c) for c in byte_string]
129 byte_string = ""
131 byte_string += chr(prefix_size)
136 byte_string += destination_address[:destination_address_count]
137 byte_string += socket.inet_aton(router)
139 return byte_string
142 def unpack(byte_string): argument
145 while offset < len(byte_string):
146 prefix_size = ord(byte_string[offset])
149 if entry_end > len(byte_string):
153 destination_address = byte_string[offset:destination_address_end]
157 router_address = byte_string[destination_address_end:entry_end]
182 byte_string = ""
185 byte_string += chr(len(part))
186 byte_string += part
187 byte_string += "\x00"
188 return byte_string
191 def unpack(byte_string): argument
195 while offset < len(byte_string):
197 byte_string,
212 def _read_domain_name(byte_string, offset): argument
218 if offset >= len(byte_string):
220 maybe_part_len = ord(byte_string[offset])
228 if offset >= len(byte_string):
233 ord(byte_string[offset]))
236 byte_string,
244 if offset + part_len >= len(byte_string):
247 parts.append(byte_string[offset : offset + part_len])
289 def unpack(byte_string): argument
290 return socket.inet_ntoa(byte_string)