All another errors in layers/tls/tools module has been fixed
Add missing imports
All code in this module has been ported to Python3
Tests are added for all functions in this module
Parse an OpenBSD 6.3 routing table that contains a locked MTU value.
Test that the parser in read_routes() recognizes this netstart -r
output line correctly.
* Fixed an error (TypeError) that triggered when reading a pcap file that
contained ntp packets. The type of variable "cls" was string not a class
type (invalid argument for method: issubclass()). By importing the type
'TCP' from 'scapy.layers.inet' and by converting cls to a classtype by
reading the key from globals, the TypeError is mitigated.
* Added test to provide insight into the cls variable inconsistencies.
Fixed a small mistake
* d0a2544ae1
* Moved tests.
* fix backward incompatibility of scapy.utils.RawPcapReader.read_packet() for scapy's v2.4 againts v2.3.2 & v2.3.3
named tuple instead of tuple as result of RawPcap[Ng]Reader.read_block_???()/read_packet():
* Fixed an error (TypeError) that triggered when calling sessions() on a PacketList that
contained ntp packets. The type of variable "cls" was a string not a class
type (invalid argument for method: issubclass()).
* Added test to provide insight into the cls variable inconsistencies.
Fixed a small mistake
* d0a2544ae1
* Forgot to delete ntp.uts during rebase...
* add support for encapsulating Ethernet frame in MPLS with optional
control word per rfc 4448
* add import of ShortField in mpls.py to fix a ut failure
* add MPLS tests in test/regression.uts
* revert indentation fixes in mpls.py to perserve clean histry
* add TaZmen Sniffer Protocol (TZSP) layer #1000
* add tests for TZSP layer #1000
* cleanups from PR reviews #1000
* fix ranges used in state tags #1000
* add some corner case tests #1000
* add support for unknown tag type #1000
use type TZSPTagUnknown if tag type is not known.
+ related tests
* fixing a nasty grammar bug #1000
* add YesNoByteField #1000
+ tests
* use YesNoByteField instead of generated dicts for conditional tags #1000
* use orb instead of unpack for accessing payload bytes #1000