ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-commits: [Wireshark-commits] master 7d7fc47: Split the low-level print stream code into a

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sat, 22 Nov 2014 03:24:21 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=7d7fc47a2a2ce31a3726e422b1c35c9a213add61
Submitter: Guy Harris (guy@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

7d7fc47 by Guy Harris (guy@xxxxxxxxxxxx):

    Split the low-level print stream code into a separate file.
    
    Put the low-level print stream code from epan/print.c into
    epan/print_stream.c, leaving the higher-level stuff in print.c
    
    Change-Id: Iae961f168ec655a29f434257b1af0937fca9f025
    Reviewed-on: https://code.wireshark.org/review/5436
    Reviewed-by: Guy Harris <guy@xxxxxxxxxxxx>
    

Actions performed:

    from  08475ff   README.heuristic: rework example code.
    adds  7d7fc47   Split the low-level print stream code into a separate file.


Summary of changes:
 epan/CMakeLists.txt  |    1 +
 epan/Makefile.common |    2 +
 epan/print.c         |  368 +++-----------------------------------------------
 epan/print.h         |   39 +-----
 epan/print_stream.c  |  367 +++++++++++++++++++++++++++++++++++++++++++++++++
 epan/print_stream.h  |   73 ++++++++++
 6 files changed, 463 insertions(+), 387 deletions(-)
 create mode 100644 epan/print_stream.c
 create mode 100644 epan/print_stream.h