Home
last modified time | relevance | path

Searched refs:TFTP_WRQ (Results 1 – 2 of 2) sorted by relevance

/external/scapy/scapy/layers/
Dtftp.py39 class TFTP_WRQ(Packet): class
72 … elif isinstance(other, TFTP_RRQ) or isinstance(other, TFTP_WRQ) or isinstance(other, TFTP_OACK):
96 isinstance(other, TFTP_WRQ) or
106 return isinstance(other, TFTP_WRQ) or isinstance(other, TFTP_RRQ)
111 bind_layers(TFTP, TFTP_WRQ, op=2)
117 bind_layers(TFTP_WRQ, TFTP_Options)
239 self.last_packet = self.l3/TFTP_WRQ(filename=self.filename, mode="octet")
314 if TFTP_WRQ in pkt:
322 self.filename = pkt[TFTP_WRQ].filename
/external/u-boot/net/
Dtftp.c37 #define TFTP_WRQ 2 macro
354 TFTP_WRQ); in tftp_send()
515 case TFTP_WRQ: in tftp_handler()