diff options
author | Jaap Keuter <jaap.keuter@xs4all.nl> | 2008-05-07 05:58:42 +0000 |
---|---|---|
committer | Jaap Keuter <jaap.keuter@xs4all.nl> | 2008-05-07 05:58:42 +0000 |
commit | 1cca1f8082f8c845da92afcb44c479b3ffd68f13 (patch) | |
tree | d0028f4b7e678bc5bf4f1c3ac2aedb26131b31df /epan/dissectors/packet-rtsp.c | |
parent | 3d39efc2c36d441f093f75be62988ffa49faa5d7 (diff) | |
download | wireshark-1cca1f8082f8c845da92afcb44c479b3ffd68f13.tar.gz wireshark-1cca1f8082f8c845da92afcb44c479b3ffd68f13.tar.bz2 wireshark-1cca1f8082f8c845da92afcb44c479b3ffd68f13.zip |
From Peter Kjellerstedt:
For some reason only the first eight interleaved RTSP channels are supported by
epan/dissectors/packet-rtsp.c. This is a problem for us as one of our servers use
the channel numbers in a round robin fashion and will thus use all 256 channels.
svn path=/trunk/; revision=25249
Diffstat (limited to 'epan/dissectors/packet-rtsp.c')
-rw-r--r-- | epan/dissectors/packet-rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtsp.c b/epan/dissectors/packet-rtsp.c index 93b1866692..8a257fb77c 100644 --- a/epan/dissectors/packet-rtsp.c +++ b/epan/dissectors/packet-rtsp.c @@ -111,7 +111,7 @@ typedef struct { dissector_handle_t dissector; } rtsp_interleaved_t; -#define RTSP_MAX_INTERLEAVED (8) +#define RTSP_MAX_INTERLEAVED (256) /* * Careful about dynamically allocating memory in this structure (say |