Wireshark-commits: [Wireshark-commits] master e73e358: Rename airpdcap to dot11decrypt.

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sat, 24 Feb 2018 11:56:30 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=e73e3580f6050e98cf5affa8f23d941845e77ecc
Submitter: Michael Mann (mmann78@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

e73e358 by Gerald Combs (gerald@xxxxxxxxxxxxx):

    Rename airpdcap to dot11decrypt.
    
    Our 802.11 decryption code isn't tied to any specific product. Change
    the file and API names to dot11decrypt.
    
    Change-Id: I14fd951be3ae9b656a4e1959067fc0bdcc681ee2
    Reviewed-on: https://code.wireshark.org/review/26058
    Petri-Dish: Gerald Combs <gerald@xxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Michael Mann <mmann78@xxxxxxxxxxxx>
    

Actions performed:

    from  3785f53   User Guide: add additional use category
    adds  e73e358   Rename airpdcap to dot11decrypt.


Summary of changes:
 caputils/airpcap_loader.c                          |    2 +-
 caputils/airpcap_loader.h                          |    2 +-
 debian/libwireshark0.symbols                       |    6 +-
 debian/libwsutil0.symbols                          |    2 +-
 epan/Makefile.am                                   |    4 +-
 epan/crypt/CMakeLists.txt                          |    8 +-
 epan/crypt/Makefile.am                             |   28 +-
 epan/crypt/{airpdcap.c => dot11decrypt.c}          | 1049 ++++++++++----------
 .../crypt/{airpdcap_ccmp.c => dot11decrypt_ccmp.c} |   80 +-
 .../{airpdcap_debug.h => dot11decrypt_debug.h}     |   70 +-
 epan/crypt/{airpdcap_int.h => dot11decrypt_int.h}  |  118 +--
 .../{airpdcap_interop.h => dot11decrypt_interop.h} |   21 +-
 ...airpdcap_rijndael.c => dot11decrypt_rijndael.c} |    6 +-
 ...airpdcap_rijndael.h => dot11decrypt_rijndael.h} |    8 +-
 .../{airpdcap_system.h => dot11decrypt_system.h}   |  184 ++--
 .../crypt/{airpdcap_tkip.c => dot11decrypt_tkip.c} |   38 +-
 .../crypt/{airpdcap_user.h => dot11decrypt_user.h} |   90 +-
 epan/crypt/{airpdcap_ws.h => dot11decrypt_ws.h}    |   12 +-
 epan/dissectors/packet-ieee80211.c                 |  114 +--
 tools/checklicenses.py                             |   20 +-
 ui/gtk/airpcap_gui_utils.c                         |   76 +-
 ui/gtk/main.c                                      |    6 +-
 ui/gtk/main_airpcap_toolbar.c                      |    2 +-
 wireshark-qt.cpp                                   |    6 +-
 wsutil/.editorconfig                               |    2 +-
 wsutil/CMakeLists.txt                              |    2 +-
 wsutil/Makefile.am                                 |    2 +-
 wsutil/crc32.h                                     |    2 +-
 wsutil/{airpdcap_wep.c => dot11decrypt_wep.c}      |    8 +-
 29 files changed, 974 insertions(+), 994 deletions(-)
 rename epan/crypt/{airpdcap.c => dot11decrypt.c} (61%)
 rename epan/crypt/{airpdcap_ccmp.c => dot11decrypt_ccmp.c} (78%)
 rename epan/crypt/{airpdcap_debug.h => dot11decrypt_debug.h} (58%)
 rename epan/crypt/{airpdcap_int.h => dot11decrypt_int.h} (56%)
 rename epan/crypt/{airpdcap_interop.h => dot11decrypt_interop.h} (88%)
 rename epan/crypt/{airpdcap_rijndael.c => dot11decrypt_rijndael.c} (96%)
 rename epan/crypt/{airpdcap_rijndael.h => dot11decrypt_rijndael.h} (94%)
 rename epan/crypt/{airpdcap_system.h => dot11decrypt_system.h} (64%)
 rename epan/crypt/{airpdcap_tkip.c => dot11decrypt_tkip.c} (92%)
 rename epan/crypt/{airpdcap_user.h => dot11decrypt_user.h} (76%)
 rename epan/crypt/{airpdcap_ws.h => dot11decrypt_ws.h} (90%)
 rename wsutil/{airpdcap_wep.c => dot11decrypt_wep.c} (96%)