rtpsniff icon indicating copy to clipboard operation
rtpsniff copied to clipboard

Standalone RTP sniffing tool.

Results 6 rtpsniff issues
Sort by recently updated
recently updated
newest added

RTP-SUM: streams 32, packets 2468, lost 4927 (199.64%), late 0 (0.00%) Surely that should be: 4927/(4927+2468) == 66% lost

If we have implemented #1 and #2, we can have anysniff initialize the modules as needed and call them all from a loop: `sniff_loop()` will be implemented once, and will...

_Current situation_ ``` void out_help(); int out_open(char const *config_file); void out_close(); void out_write(uint32_t unixtime_begin, uint32_t interval, void *data); ``` _Wanted situation_ ``` struct output_module { void (*print_help)(FILE *fp); void (*open)(int...

_Current situation_ Sniffing module implements all of these: ``` void sniff_help(); /* show info */ int sniff_snaplen(); void sniff_loop(pcap_t *handle, struct memory_t *memory); void sniff_release_data(void **data); ``` _Wanted situation_ Sniffing...