Wireshark-commits: [Wireshark-commits] master 1b4b5e5: RTP: Encapsulation of comparsion of two rtps

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Wed, 20 Jun 2018 08:26:41 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=1b4b5e59e9afbf9a83e647755ed6b3a2f344464d
Submitter: Anders Broman (a.broman58@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

1b4b5e5 by Jiri Novak (j.novak@xxxxxxxxxxxx):

    RTP: Encapsulation of comparsion of two rtpstreams
    
    Changes:
    - rtpstream_id_t is introduced and its related functions. It encapsulates comparsion of two rtpstreams.
    - dest_* renamed to dst_*
    - src_port and dst_port are 16bits only.
    - sharkd_session.c use common id functions
    - IAX2 part related to RTP updated to common *id* function
    
    Change-Id: Id38728a4e5d80363480c7ce42ff9c6eaad069686
    Reviewed-on: https://code.wireshark.org/review/28340
    Petri-Dish: Anders Broman <a.broman58@xxxxxxxxx>
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  01de57b   nas5gs: Fix bitmask for NAS key set identifier.
    adds  1b4b5e5   RTP: Encapsulation of comparsion of two rtpstreams


Summary of changes:
 sharkd_session.c               |  83 +++++--------
 ui/CMakeLists.txt              |   2 +
 ui/cli/tap-rtp.c               |  10 +-
 ui/qt/iax2_analysis_dialog.cpp |  61 ++++-----
 ui/qt/iax2_analysis_dialog.h   |  11 +-
 ui/qt/rtp_analysis_dialog.cpp  | 273 +++++++++++++++++------------------------
 ui/qt/rtp_analysis_dialog.h    |  24 +---
 ui/qt/rtp_audio_stream.cpp     |  19 +--
 ui/qt/rtp_audio_stream.h       |   6 +-
 ui/qt/rtp_player_dialog.cpp    |  14 +--
 ui/qt/rtp_stream_dialog.cpp    |  38 +++---
 ui/rtp_stream.c                |  16 ---
 ui/rtp_stream.h                |  21 +---
 ui/rtp_stream_id.c             | 118 ++++++++++++++++++
 ui/rtp_stream_id.h             |  90 ++++++++++++++
 ui/tap-rtp-common.c            |  44 ++++---
 ui/tap-rtp-common.h            |  14 +++
 ui/voip_calls.c                |  31 +++--
 18 files changed, 475 insertions(+), 400 deletions(-)
 create mode 100644 ui/rtp_stream_id.c
 create mode 100644 ui/rtp_stream_id.h