X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/546558eabd81cfc36a81a4df728fdfea0d83b41a..refs/heads/master:/print-rtsp.c diff --git a/print-rtsp.c b/print-rtsp.c index 8c04e11a..f240a90f 100644 --- a/print-rtsp.c +++ b/print-rtsp.c @@ -13,17 +13,11 @@ /* \summary: Real Time Streaming Protocol (RTSP) printer */ -#ifdef HAVE_CONFIG_H #include -#endif #include "netdissect-stdinc.h" -#include -#include - #include "netdissect.h" -#include "extract.h" static const char *rtspcmds[] = { "DESCRIBE", @@ -44,5 +38,5 @@ void rtsp_print(netdissect_options *ndo, const u_char *pptr, u_int len) { ndo->ndo_protocol = "rtsp"; - txtproto_print(ndo, pptr, len, "rtsp", rtspcmds, RESP_CODE_SECOND_TOKEN); + txtproto_print(ndo, pptr, len, rtspcmds, RESP_CODE_SECOND_TOKEN); }