Lines Matching refs:query_packet
187 def handle(self, query_packet): argument
200 return self.handle_impl(query_packet)
202 def handle_impl(self, query_packet): argument
206 def respond(self, query_packet): argument
294 def handle_impl(self, query_packet): argument
295 if not self.is_our_message_type(query_packet):
306 def respond(self, query_packet): argument
307 if not self.is_our_message_type(query_packet):
312 query_packet.transaction_id,
313 query_packet.client_hw_address,
316 requested_parameters = query_packet.get_option(
333 def handle_impl(self, query_packet): argument
334 if not self.is_our_message_type(query_packet):
344 def respond(self, query_packet): argument
345 if not self.is_our_message_type(query_packet):
350 query_packet.transaction_id, query_packet.client_hw_address)
392 def handle_impl(self, query_packet): argument
393 if not self.is_our_message_type(query_packet):
397 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
398 requested_ip = query_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP)
426 def respond(self, query_packet): argument
427 if not self.is_our_message_type(query_packet):
432 query_packet.transaction_id,
433 query_packet.client_hw_address,
436 requested_parameters = query_packet.get_option(
473 def handle_impl(self, query_packet): argument
474 if not self.is_our_message_type(query_packet):
478 if query_packet.get_option(dhcp_packet.OPTION_SERVER_ID) is not None:
483 requested_ip = query_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP)
524 def handle_impl(self, query_packet): argument
525 if not self.is_our_message_type(query_packet):
529 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
575 def respond(self, query_packet): argument
580 query_packet.transaction_id, query_packet.client_hw_address)
583 self).respond(query_packet)
608 def handle_impl(self, query_packet): argument
609 if not self.is_our_message_type(query_packet):
613 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)