Wireshark-commits: [Wireshark-commits] master 1a02ca0: Add support for android logcat text files
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Wed, 6 Aug 2014 06:46:53 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=1a02ca0150e434d9ddc7c023267c9097a059b6be
Submitter: Anders Broman (a.broman58@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

1a02ca0 by Michał Orynicz (michal.orynicz@xxxxxxxxx):

    Add support for android logcat text files
    
    Wireshark already supports reading and writing logcat
    logs saved in binary files. Binary format, although
    better, is used less often than saving those logs to
    text files.
    
    This patch extends wireshark's support for android logcat
    logs to reading and writing logcat logs in text files.
    
    Features:
    * support for tag, brief, process, thread, time, threadtime
      and long formats
    * saving in original format
    * it's generally awesome
    
    Change-Id: I013d6ac2da876d9a2b39b740219eb398d03830f6
    Reviewed-on: https://code.wireshark.org/review/1802
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  71d07bc   MySQL: Add support of SSL in MySQL
    adds  1a02ca0   Add support for android logcat text files


Summary of changes:
 epan/CMakeLists.txt                  |    1 +
 epan/dissectors/Makefile.common      |    1 +
 epan/dissectors/packet-logcat-text.c |  394 ++++++++++++++++++++++
 epan/dissectors/packet-logcat.c      |    2 +-
 wiretap/CMakeLists.txt               |    1 +
 wiretap/Makefile.common              |    2 +
 wiretap/file_access.c                |   20 +-
 wiretap/logcat.c                     |  362 +--------------------
 wiretap/logcat.h                     |   40 ++-
 wiretap/logcat_text.c                |  593 ++++++++++++++++++++++++++++++++++
 wiretap/{logcat.h => logcat_text.h}  |   19 +-
 11 files changed, 1051 insertions(+), 384 deletions(-)
 create mode 100644 epan/dissectors/packet-logcat-text.c
 create mode 100644 wiretap/logcat_text.c
 copy wiretap/{logcat.h => logcat_text.h} (70%)