Home
last modified time | relevance | path

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

/external/scapy/scapy/arch/
Dlinux.py482 if msg[0] == 22 and len(sx) < conf.min_pkt_size:
483 self.outs.send(sx + b"\x00" * (conf.min_pkt_size - len(sx)))
547 if msg[0] == 22 and len(x) < conf.min_pkt_size:
548 padding = b"\x00" * (conf.min_pkt_size - len(x))
/external/scapy/scapy/
Dconfig.py408 min_pkt_size = 60 variable in Conf