Wireshark-commits: [Wireshark-commits] master ac0eb60: extcap: add randpktdump, a random packet gen

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Tue, 22 Dec 2015 12:24:26 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=ac0eb6043be787428a194c163b55c852c8cb5be2
Submitter: Michael Mann (mmann78@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

ac0eb60 by Dario Lombardo (lomato@xxxxxxxxx):

    extcap: add randpktdump, a random packet generator.
    
    This new extcap is for testing and educational purpose.
    It relies on rankpkt-core functions to generate random packets.
    
    Change-Id: If6890f0673545682995a2079458108edc0913b30
    Reviewed-on: https://code.wireshark.org/review/11764
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Michael Mann <mmann78@xxxxxxxxxxxx>
    

Actions performed:

    from  0e4a742   [Diameter AVPs] Add Vodafone AVPs
    adds  ac0eb60   extcap: add randpktdump, a random packet generator.


Summary of changes:
 .gitignore                       |    1 +
 CMakeLists.txt                   |   23 ++
 CMakeOptions.txt                 |    1 +
 Makefile.am                      |   17 +-
 Makefile.common                  |    5 +
 Makefile.nmake                   |   24 +-
 configure.ac                     |   42 ++++
 debian/wireshark-common.manpages |    1 +
 doc/Makefile.am                  |   13 +-
 doc/Makefile.nmake               |   17 +-
 doc/extcap.pod                   |    2 +-
 doc/randpktdump.pod              |  142 +++++++++++
 extcap/randpktdump.c             |  505 ++++++++++++++++++++++++++++++++++++++
 packaging/macosx/osx-app.sh      |    1 +
 packaging/nsis/Makefile.nmake    |    1 +
 packaging/nsis/uninstall.nsi     |    2 +
 packaging/nsis/wireshark.nsi     |    9 +
 randpkt-core.c                   |    2 +-
 randpkt-core.h                   |    2 +
 19 files changed, 801 insertions(+), 9 deletions(-)
 create mode 100644 doc/randpktdump.pod
 create mode 100644 extcap/randpktdump.c