Michael Mann
changed
bug 13257
What |
Removed |
Added |
Status |
UNCONFIRMED
|
CONFIRMED
|
Ever confirmed |
|
1
|
Comment # 2
on bug 13257
from Michael Mann
(In reply to Gerrit Code Review from comment #1)
> Change 19341 had a related patch set uploaded by Jirka Novak:
> RTSP dissector: Decode RTP/AVP/TCP and configure RTP session for it
>
> https://code.wireshark.org/review/19341
Tested samples of headers:
UDP:
C->S Transport: RTP/AVP;unicast;client_port=15558-15559
=> ignore, not reply
S->C Transport:
RTP/AVP/UDP;unicast;client_port=15558-15559;server_port=59000-59001;ssrc=d9364a7f
=> register UDP RTP C_IP:client_port -> *:server_port
UDP:
S->C Transport:
RTP/AVP/UDP;unicast;server_port=5004-5005;client_port=2462-2463;ssrc=927717de;mode=PLAY
=> register UDP RTP C_IP:client_port -> *:server_port
UDP:
C: 192.168.208.208
S: 192.168.208.215
S->C Transport:
RTP/AVP;unicast;client_port=6970-6971;source=192.168.208.215;server_port=6970-6971;ssrc=00006026
=> register UDP RTP C_IP:client_port -> *:server_port
UDP, bogus packet:
C: 192.168.208.208
S: 192.168.208.215
S->C Transport:
RTP/AVP;unicast;cloent_port=6970-6971;source=192.168.208.215;server_port=6970-6971;ssrc=000\3676026
=> ignored, no client port decoded
RTSP interlaced:
C->S Transport: RTP/AVP/TCP;interleaved=0
=> ignore, not reply
S->C Transport: RTP/AVP/TCP;interleaved=0
=> decode RTSP/RTP
RTSP interlaced:
C->S Transport: RTP/AVP/TCP;unicast;interleaved=0-1;ssrc=daef0404;mode=PLAY
=> ignore, not reply
S->C Transport: RTP/AVP/TCP;unicast;interleaved=0-1;ssrc=53ca8149;mode=PLAY
=> decode RTSP/RTP
custom:
C->S Transport:
clab-MP2T/DVBC/QAM;qam_name=SIT.16;qam_destination=501000000.1,clab-MP2T/DVBC/UDP;unicast;bit_rate=3750000;destination=10.24.101.51;destination_port=513;mpts_program=0
=> ignore, no reply
S->C no Transport header
=> ignore
ED-137A, TCP:
C: 172.16.168.24
S: 172.16.168.64
C->S Transport:
RTP/AVP/TCP;unicast;mode="RECORD";dest_addr=":9";setup=active;connection=new
=> ignore, not reply
S->C Transport:
RTP/AVP/TCP;unicast;mode="RECORD";setup="passive";src_addr="172.16.168.64:5000";dest_addr=":9"
=> register TCP RTP src_addr:src_port -> *:*
ED-137A, UDP:
C: 172.16.31.254 (media 172.16.31.254)
S: 172.16.31.155
C->S Transport:
RTP/AVP;unicast;mode="RECORD";src_addr="172.16.31.254:8192";dest_addr="172.16.31.155"
=> ignore, not reply
S->C Transport:
RTP/AVP;unicast;mode="RECORD";src_addr="172.16.31.254:8192";dest_addr="172.16.31.155:8000"
=> register UDP RTP src_addr:src_port -> *:dest_port
You are receiving this mail because:
- You are watching all bug changes.