HomeSort by relevance Sort by last modified time
    Searched full:tftp_options (Results 1 - 3 of 3) sorted by null

  /external/scapy/scapy/layers/
tftp.py 62 class TFTP_Options(Packet):
116 bind_layers(TFTP_RRQ, TFTP_Options)
117 bind_layers(TFTP_WRQ, TFTP_Options)
118 bind_layers(TFTP_OACK, TFTP_Options)
323 options = pkt.getlayer(TFTP_Options)
333 self.last_packet = self.l3/TFTP_OACK()/TFTP_Options(options=opt)
405 options = pkt[TFTP_Options]
427 self.last_packet = self.l3/TFTP_OACK()/TFTP_Options(options=opt)
  /external/syslinux/gpxe/src/net/udp/
tftp.c 676 static struct tftp_option tftp_options[] = { variable in typeref:struct:tftp_option
695 for ( option = tftp_options ; option->name ; option++ ) {
    [all...]
  /external/scapy/test/
regression.uts 709 x=IP()/UDP(sport=12345)/TFTP()/TFTP_RRQ(filename="fname")/TFTP_Options(options=[TFTP_Option(oname="blksize", value="8192"),TFTP_Option(oname="other", value="othervalue")])
714 assert(len(y[TFTP_Options].options) == 2 and y[TFTP_Option].oname == b"blksize")
    [all...]

Completed in 213 milliseconds