Wireshark-commits: [Wireshark-commits] master 8d16ac4: Add name resolution support to address type.

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Thu, 19 Feb 2015 13:09:46 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=8d16ac46d50445f4e0ce567acb8e265db08a7576
Submitter: Michael Mann (mmann78@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

8d16ac4 by Michael Mann (mmann78@xxxxxxxxxxxx):

    Add name resolution support to address type.
    
    Add address_with_resolution_to_str API that returns address string + name resolution in the format %s (%s), first string is resolved name (if available) and second string is raw address string.
    
    Convert AT_FCWWN to using proper name resolution format
    
    First use of address_with_resolution_to_str with field types in proto.c
    
    Change-Id: I2ae77c29a4ffc30bb919fbec00f06629830898c2
    Reviewed-on: https://code.wireshark.org/review/7196
    Petri-Dish: Michael Mann <mmann78@xxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Michael Mann <mmann78@xxxxxxxxxxxx>
    

Actions performed:

    from  7208355   Don't put CORBA IDL dissectors in ASN1_ variables.
    adds  8d16ac4   Add name resolution support to address type.


Summary of changes:
 debian/libwireshark0.symbols        |    1 +
 epan/addr_resolv.c                  |   27 +---
 epan/address_types.c                |  270 +++++++++++++++++++++++++++--------
 epan/address_types.h                |   14 +-
 epan/dissectors/packet-arcnet.c     |   16 +--
 epan/dissectors/packet-atalk.c      |   17 +--
 epan/dissectors/packet-devicenet.c  |    7 +-
 epan/dissectors/packet-ieee80211.c  |    6 +-
 epan/dissectors/packet-ieee802154.c |    8 +-
 epan/dissectors/packet-j1939.c      |    7 +-
 epan/dissectors/packet-jxta.c       |    6 +-
 epan/dissectors/packet-mp2t.c       |    2 +-
 epan/dissectors/packet-mstp.c       |   16 +--
 epan/dissectors/packet-sna.c        |    8 +-
 epan/dissectors/packet-tipc.c       |    6 +-
 epan/osi-utils.c                    |    6 +-
 epan/proto.c                        |   21 ++-
 epan/to_str.h                       |    1 +
 18 files changed, 292 insertions(+), 147 deletions(-)