├── AUTHORS ├── LICENSE ├── broken └── removed.txt ├── decode-pcap.py ├── httprecord.py ├── httpsession.py ├── litesession.py ├── out └── empty.txt ├── parsing.py ├── printing.py ├── readme.md ├── refactoring ├── __init__.py ├── baserecord.py ├── errors.py ├── parsing_ng.py ├── tcprecord.py └── unfinished.txt ├── tcpsession.py └── test └── removed.txt /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/LICENSE -------------------------------------------------------------------------------- /broken/removed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/broken/removed.txt -------------------------------------------------------------------------------- /decode-pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/decode-pcap.py -------------------------------------------------------------------------------- /httprecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/httprecord.py -------------------------------------------------------------------------------- /httpsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/httpsession.py -------------------------------------------------------------------------------- /litesession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/litesession.py -------------------------------------------------------------------------------- /out/empty.txt: -------------------------------------------------------------------------------- 1 | empty dir, created for output -------------------------------------------------------------------------------- /parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/parsing.py -------------------------------------------------------------------------------- /printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/printing.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/readme.md -------------------------------------------------------------------------------- /refactoring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /refactoring/baserecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/refactoring/baserecord.py -------------------------------------------------------------------------------- /refactoring/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/refactoring/errors.py -------------------------------------------------------------------------------- /refactoring/parsing_ng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/refactoring/parsing_ng.py -------------------------------------------------------------------------------- /refactoring/tcprecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/refactoring/tcprecord.py -------------------------------------------------------------------------------- /refactoring/unfinished.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/refactoring/unfinished.txt -------------------------------------------------------------------------------- /tcpsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/tcpsession.py -------------------------------------------------------------------------------- /test/removed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tcplanz/HEAD/test/removed.txt --------------------------------------------------------------------------------