Wireshark-commits: [Wireshark-commits] master f69108b: Add a systemd Journal Export extcap.
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Mon, 01 Oct 2018 08:58:20 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=f69108b84e9f996641d9c920fffc19853115f56b
Submitter: "Anders Broman <a.broman58@xxxxxxxxx>"
Changed: branch: master
Repository: wireshark

Commits:

f69108b by Gerald Combs (gerald@xxxxxxxxxxxxx):

    Add a systemd Journal Export extcap.
    
    Add an sdjournal extcap, which reads journal entries using the
    sd-journal API and dumps them as journal Export Format records.
    
    Change-Id: I17ccfa88ab5d053c16c869cd26e580d84022502e
    Reviewed-on: https://code.wireshark.org/review/29479
    Reviewed-by: Gerald Combs <gerald@xxxxxxxxxxxxx>
    Petri-Dish: Gerald Combs <gerald@xxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Peter Wu <peter@xxxxxxxxxxxxx>
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  e1ef8f6   Qt: Set enabled properties in Filter Dialog
     add  f69108b   Add a systemd Journal Export extcap.


Summary of changes:
 CMakeLists.txt                  |   4 +
 CMakeOptions.txt                |   7 +
 cmake/modules/FindSystemd.cmake |  41 ++++
 debian/control                  |   2 +-
 doc/CMakeLists.txt              |  12 ++
 doc/sdjournal.pod               | 145 +++++++++++++
 dumpcap.c                       |   2 +-
 extcap/CMakeLists.txt           |  25 +++
 extcap/sdjournal.c              | 449 ++++++++++++++++++++++++++++++++++++++++
 packaging/rpm/wireshark.spec.in |  18 ++
 wiretap/pcapng.c                |   6 +-
 11 files changed, 706 insertions(+), 5 deletions(-)
 create mode 100644 cmake/modules/FindSystemd.cmake
 create mode 100644 doc/sdjournal.pod
 create mode 100644 extcap/sdjournal.c