def __init__(self, addr, data): Request.__init__(self) self._addr = addr self._data = data self._pkt_id = None
def send(self, host): self._pkt_id = host.next_pkt_id() return Request.send(self, host)