Wireshark-commits: [Wireshark-commits] master d6da952: extcap: add sshdump.

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Thu, 19 Nov 2015 15:29:27 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=d6da95231ee790fd884ca2a41fe59aa9b05ccde9
Submitter: Anders Broman (a.broman58@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

d6da952 by Dario Lombardo (lomato@xxxxxxxxx):

    extcap: add sshdump.
    
    sshdump is an extcap module that allows dumping from a remote host using an ssh connection.
    It goes with the existing extcap plugin interface.
    
    Change-Id: I8987614fdd817b8173a50130812bc643a4833bca
    Reviewed-on: https://code.wireshark.org/review/11402
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  1a84148   Fixing picosecond timestamp for vrt protocol.  Needs to be parsed as uint64 not double
    adds  d6da952   extcap: add sshdump.


Summary of changes:
 .gitignore                       |    1 +
 CMakeLists.txt                   |   53 ++-
 CMakeOptions.txt                 |    1 +
 Makefile.am                      |   21 +-
 Makefile.common                  |    4 +
 Makefile.nmake                   |   44 +-
 acinclude.m4                     |   37 ++
 cmake/modules/FindLIBSSH.cmake   |  101 +++++
 cmakeconfig.h.in                 |    6 +
 config.nmake                     |   19 +
 configure.ac                     |   71 ++++
 debian/wireshark-common.manpages |    1 +
 doc/Makefile.am                  |   13 +-
 doc/Makefile.nmake               |   18 +-
 doc/extcap.pod                   |    2 +-
 doc/sshdump.pod                  |  212 ++++++++++
 extcap/sshdump.c                 |  850 ++++++++++++++++++++++++++++++++++++++
 packaging/macosx/osx-app.sh      |    1 +
 packaging/nsis/Makefile.nmake    |    3 +
 packaging/nsis/uninstall.nsi     |    4 +
 packaging/nsis/wireshark.nsi     |   11 +
 21 files changed, 1463 insertions(+), 10 deletions(-)
 create mode 100644 cmake/modules/FindLIBSSH.cmake
 create mode 100644 doc/sshdump.pod
 create mode 100644 extcap/sshdump.c