mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
bf09290977
sngrep is a tool for displaying SIP calls message flows from terminal. It supports live capture to display realtime SIP packets and can also be used as PCAP viewer. Signed-off-by: Adam Duskett <aduskett@codeblue.com> [Thomas: - ncurses wide char and other sub-options are not needed to build sngrep, so they are removed, as well as the wchar dependency. ncurses with wchar support is only needed when --enable-unicode is passed, but even then, it doesn't work because the configure script searches <ncursesw/ncurses.h>, so unicode support has been explicitly disabled. - add optional dependencies on OpenSSL, GnuTLS and PCRE. This also makes sure they are explicitly enabled/disabled depending on the configuration. - add upstream URL in Config.in file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
440 B
Plaintext
15 lines
440 B
Plaintext
comment "sngrep needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_SNGREP
|
|
bool "sngrep"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_LIBPCAP
|
|
help
|
|
sngrep is a tool for displaying SIP calls message flows from
|
|
terminal. It supports live capture to display realtime SIP
|
|
packets and can also be used as PCAP viewer.
|
|
|
|
https://github.com/irontec/sngrep
|