Home
last modified time | relevance | path

Searched refs:do_dissect (Results 1 – 3 of 3) sorted by relevance

/external/scapy/scapy/
Dasn1packet.py28 def do_dissect(self, x): member in ASN1_Packet
Dpacket.py690 def do_dissect(self, s): member in Packet
734 s = self.do_dissect(s)
/external/scapy/doc/scapy/
Dbuild_dissect.rst288 s = self.do_dissect(s)
318 - ``do_dissect()`` perform the real dissection of the layer.
343 ``do_dissect()``. If you have understood the different representations of
347 Guess what? That is exactly what ``do_dissect()`` does::
349 def do_dissect(self, s):
364 When writing ``FOO("\xff\xff"+"B"*8)``, it calls ``do_dissect()``. The first