[Pkg-voip-commits] [sngrep] branch master updated (22fe8f7 -> 4d6c79a)

Victor Seva vseva at moszumanska.debian.org
Fri Apr 15 09:16:23 UTC 2016


This is an automated email from the git hooks/post-receive script.

vseva pushed a change to branch master
in repository sngrep.

      from  22fe8f7   update debian changelog
      adds  196780f   Imported Upstream version 1.3.0
       new  60b61a4   Merge tag 'upstream/1.3.0'
       new  4d6c79a   update debian changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                            |    4 +-
 ChangeLog                              |  322 ++++----
 README                                 |  102 ++-
 README.md                              |  102 +--
 TODO                                   |   81 +-
 configure.ac                           |    2 +-
 debian/changelog                       |    6 +
 doc/sngrep.8                           |    6 +-
 src/Makefile.am                        |   11 +-
 src/address.c                          |  101 +++
 src/address.h                          |   93 +++
 src/capture.c                          |  398 +++-------
 src/capture.h                          |  208 +-----
 src/capture_eep.c                      |  128 ++--
 src/capture_eep.h                      |   16 +-
 src/capture_gnutls.c                   |  212 ++++--
 src/capture_gnutls.h                   |   97 +--
 src/capture_openssl.c                  |  217 ++++--
 src/capture_openssl.h                  |   92 ++-
 src/curses/scrollbar.c                 |   73 ++
 src/curses/scrollbar.h                 |   86 +++
 tests/test_001.c => src/curses/theme.h |   46 +-
 src/{ => curses}/ui_call_flow.c        | 1265 ++++++++++++++++----------------
 src/{ => curses}/ui_call_flow.h        |  286 +++++---
 src/{ => curses}/ui_call_list.c        |  626 ++++++++++------
 src/{ => curses}/ui_call_list.h        |  143 ++--
 src/{ => curses}/ui_call_raw.c         |  107 ++-
 src/{ => curses}/ui_call_raw.h         |   44 +-
 src/{ => curses}/ui_column_select.c    |  165 ++---
 src/{ => curses}/ui_column_select.h    |   62 +-
 src/{ => curses}/ui_filter.c           |  171 +++--
 src/{ => curses}/ui_filter.h           |   36 +-
 src/{ => curses}/ui_manager.c          |  314 ++------
 src/{ => curses}/ui_manager.h          |  230 +-----
 src/{ => curses}/ui_msg_diff.c         |   73 +-
 src/{ => curses}/ui_msg_diff.h         |   58 +-
 src/curses/ui_panel.c                  |  235 ++++++
 src/curses/ui_panel.h                  |  280 +++++++
 src/{ => curses}/ui_save.c             |  196 ++---
 src/{ => curses}/ui_save.h             |   66 +-
 src/{ => curses}/ui_settings.c         |  118 ++-
 src/{ => curses}/ui_settings.h         |   47 +-
 src/{ => curses}/ui_stats.c            |  117 ++-
 src/{ => curses}/ui_stats.h            |   41 +-
 src/filter.c                           |    8 +-
 src/filter.h                           |    4 +-
 src/group.c                            |   48 +-
 src/group.h                            |   27 +-
 src/keybinding.c                       |   23 +-
 src/keybinding.h                       |   12 +-
 src/main.c                             |   10 +-
 src/media.c                            |   38 +-
 src/media.h                            |   32 +-
 src/option.c                           |    4 +-
 src/option.h                           |    4 +-
 src/packet.c                           |  160 ++++
 src/packet.h                           |  172 +++++
 src/rtp.c                              |  128 +++-
 src/rtp.h                              |   33 +-
 src/setting.c                          |    8 +-
 src/setting.h                          |    7 +-
 src/sip.c                              |  346 +++++----
 src/sip.h                              |  136 ++--
 src/sip_attr.c                         |    8 +-
 src/sip_attr.h                         |    8 +-
 src/sip_call.c                         |   93 ++-
 src/sip_call.h                         |   61 +-
 src/sip_msg.c                          |   32 +-
 src/sip_msg.h                          |   23 +-
 src/util.c                             |   18 +-
 src/util.h                             |   10 +-
 src/vector.c                           |   64 +-
 src/vector.h                           |   27 +-
 tests/Makefile.am                      |    6 +-
 tests/test_001.c                       |    4 +-
 tests/test_002.c                       |    4 +-
 tests/test_003.c                       |    4 +-
 tests/test_004.c                       |    6 +-
 tests/test_005.c                       |    6 +-
 tests/test_006.c                       |    6 +-
 tests/test_007.c                       |    4 +-
 tests/{test_001.c => test_008.c}       |   20 +-
 tests/{test_001.c => test_009.c}       |   22 +-
 tests/test_input.c                     |   22 +-
 84 files changed, 5106 insertions(+), 3625 deletions(-)
 mode change 120000 => 100644 README
 mode change 100644 => 120000 README.md
 create mode 100644 src/address.c
 create mode 100644 src/address.h
 create mode 100644 src/curses/scrollbar.c
 create mode 100644 src/curses/scrollbar.h
 copy tests/test_001.c => src/curses/theme.h (54%)
 rename src/{ => curses}/ui_call_flow.c (50%)
 rename src/{ => curses}/ui_call_flow.h (58%)
 rename src/{ => curses}/ui_call_list.c (55%)
 rename src/{ => curses}/ui_call_list.h (67%)
 rename src/{ => curses}/ui_call_raw.c (78%)
 rename src/{ => curses}/ui_call_raw.h (77%)
 rename src/{ => curses}/ui_column_select.c (72%)
 rename src/{ => curses}/ui_column_select.h (75%)
 rename src/{ => curses}/ui_filter.c (76%)
 rename src/{ => curses}/ui_filter.h (84%)
 rename src/{ => curses}/ui_manager.c (74%)
 rename src/{ => curses}/ui_manager.h (52%)
 rename src/{ => curses}/ui_msg_diff.c (79%)
 rename src/{ => curses}/ui_msg_diff.h (72%)
 create mode 100644 src/curses/ui_panel.c
 create mode 100644 src/curses/ui_panel.h
 rename src/{ => curses}/ui_save.c (76%)
 rename src/{ => curses}/ui_save.h (76%)
 rename src/{ => curses}/ui_settings.c (85%)
 rename src/{ => curses}/ui_settings.h (87%)
 rename src/{ => curses}/ui_stats.c (59%)
 rename src/{ => curses}/ui_stats.h (60%)
 create mode 100644 src/packet.c
 create mode 100644 src/packet.h
 copy tests/{test_001.c => test_008.c} (65%)
 copy tests/{test_001.c => test_009.c} (64%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-voip/sngrep.git



More information about the Pkg-voip-commits mailing list