├── NEWS ├── README.md ├── pkg ├── debian │ ├── compat │ ├── source │ │ └── format │ ├── watch │ ├── rules │ ├── control │ ├── copyright │ └── changelog ├── apk │ └── APKBUILD └── rpm │ └── SPECS │ └── sngrep.spec ├── doc ├── Makefile.am ├── ironlogo.png ├── footer.html └── sngrep.8 ├── AUTHORS ├── config ├── Makefile.am └── sngreprc ├── tests ├── aaa.pcap ├── ipip.pcap ├── ipv6frag.pcap ├── README ├── Makefile.am ├── test_001.c ├── test_011.c ├── test_006.c ├── test_008.c ├── test_009.c ├── test_005.c ├── test_002.c ├── test_004.c ├── test_003.c ├── test_input.c ├── test_007.c └── test_010.c ├── Makefile.am ├── .travis.yml ├── .gitignore ├── bootstrap.sh ├── src ├── Makefile.am ├── curses │ ├── ui_stats.h │ ├── theme.h │ ├── scrollbar.h │ ├── scrollbar.c │ ├── ui_msg_diff.h │ ├── ui_filter.h │ ├── ui_call_raw.h │ ├── ui_column_select.h │ ├── ui_save.h │ ├── ui_panel.c │ └── ui_manager.h ├── hash.h ├── config.h.cmake ├── media.h ├── address.h ├── util.h ├── media.c ├── address.c ├── hash.c ├── filter.h ├── option.h ├── packet.h ├── packet.c ├── sip_msg.c ├── sip_msg.h ├── util.c ├── sip_attr.c ├── sip_attr.h ├── keybinding.h ├── setting.h └── option.c ├── m4 └── sngrep.m4 ├── LICENSE.OpenSSL ├── TODO └── README /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /pkg/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = sngrep.8 2 | -------------------------------------------------------------------------------- /pkg/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Ivan Alonso (aka Kaian) First version of all files 2 | -------------------------------------------------------------------------------- /config/Makefile.am: -------------------------------------------------------------------------------- 1 | sysconfdir=@sysconfdir@ 2 | sysconf_DATA=sngreprc 3 | -------------------------------------------------------------------------------- /tests/aaa.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/sngrep/HEAD/tests/aaa.pcap -------------------------------------------------------------------------------- /doc/ironlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/sngrep/HEAD/doc/ironlogo.png -------------------------------------------------------------------------------- /tests/ipip.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/sngrep/HEAD/tests/ipip.pcap -------------------------------------------------------------------------------- /tests/ipv6frag.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/sngrep/HEAD/tests/ipv6frag.pcap -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I m4 2 | SUBDIRS=src config doc tests 3 | EXTRA_DIST=bootstrap.sh 4 | -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- 1 |
3 |