OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tftp_option
(Results
1 - 3
of
3
) sorted by null
/external/scapy/scapy/layers/
tftp.py
56
class
TFTP_Option
(Packet):
63
fields_desc = [ PacketListField("options", [],
TFTP_Option
, length_from=lambda x:None) ]
/external/syslinux/gpxe/src/net/udp/
tftp.c
663
struct
tftp_option
{
struct
676
static struct
tftp_option
tftp_options[] = {
693
struct
tftp_option
*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")])
712
y[
TFTP_Option
].oname
713
y[
TFTP_Option
:2].oname
714
assert(len(y[TFTP_Options].options) == 2 and y[
TFTP_Option
].oname == b"blksize")
[
all
...]
Completed in 170 milliseconds