[UMTS RLC] Renaming dissector files to fit FP/MAC

Currently the UMTS FP & MAC dissector's are named packet-umts_X.
This commit renames the UMTS RLC's files to show their relation.

Change-Id: I9e37be95f7c7d08278075a49b8abc2b480a13d64
Reviewed-on: https://code.wireshark.org/review/22188
Reviewed-by: Michael Mann <mmann78@netscape.net>
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Darien Spencer 2017-06-17 13:27:33 -07:00 committed by Anders Broman
parent 553b1e0215
commit 8775b0b1b2
12 changed files with 14 additions and 14 deletions

View File

@ -1123,7 +1123,6 @@ set(DISSECTOR_SRC
packet-rip.c
packet-ripng.c
packet-rlc-lte.c
packet-rlc.c
packet-rlm.c
packet-rlogin.c
packet-rmcp.c
@ -1314,6 +1313,7 @@ set(DISSECTOR_SRC
packet-uma.c
packet-umts_fp.c
packet-umts_mac.c
packet-umts_rlc.c
packet-usb-audio.c
packet-usb-ccid.c
packet-usb-com.c

View File

@ -1145,7 +1145,6 @@ DISSECTOR_SRC = \
packet-rip.c \
packet-ripng.c \
packet-rlc-lte.c \
packet-rlc.c \
packet-rlm.c \
packet-rlogin.c \
packet-rmcp.c \
@ -1336,6 +1335,7 @@ DISSECTOR_SRC = \
packet-uma.c \
packet-umts_fp.c \
packet-umts_mac.c \
packet-umts_rlc.c \
packet-usb-audio.c \
packet-usb-ccid.c \
packet-usb-com.c \
@ -1713,7 +1713,6 @@ DISSECTOR_INCLUDES = \
packet-rdm.h \
packet-rdt.h \
packet-reload.h \
packet-rlc.h \
packet-rlc-lte.h \
packet-rmi.h \
packet-rmt-common.h \
@ -1788,6 +1787,7 @@ DISSECTOR_INCLUDES = \
packet-udp.h \
packet-umts_fp.h \
packet-umts_mac.h \
packet-umts_rlc.h \
packet-usb.h \
packet-usb-hid.h \
packet-usbip.h \

View File

@ -38,7 +38,7 @@
#include "packet-umts_fp.h"
#include "packet-umts_mac.h"
#include "packet-rrc.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#include "packet-nbap.h"
#ifdef _MSC_VER

View File

@ -22,7 +22,7 @@
#ifndef PACKET_NBAP_H
#define PACKET_NBAP_H
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#include "packet-umts_mac.h"
/*

View File

@ -46,7 +46,7 @@
#include "packet-nbap.h"
#include "packet-umts_fp.h"
#include "packet-umts_mac.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#ifdef _MSC_VER
/* disable: "warning C4049: compiler limit : terminating line number emission" */

View File

@ -35,7 +35,7 @@
#include <wiretap/catapult_dct2000.h>
#include "packet-umts_fp.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#include "packet-mac-lte.h"
#include "packet-rlc-lte.h"

View File

@ -29,7 +29,7 @@
#include <epan/proto_data.h>
#include "packet-umts_fp.h"
#include "packet-umts_mac.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
void proto_register_fp_hint(void);
void proto_reg_handoff_fp_hint(void);

View File

@ -46,7 +46,7 @@
#include "packet-umts_fp.h"
#include "packet-umts_mac.h"
#include "packet-rrc.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#include "packet-nbap.h"
#ifdef _MSC_VER

View File

@ -30,7 +30,7 @@
#ifndef PACKET_NBAP_H
#define PACKET_NBAP_H
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#include "packet-umts_mac.h"
/*

View File

@ -54,7 +54,7 @@
#include "packet-nbap.h"
#include "packet-umts_fp.h"
#include "packet-umts_mac.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#ifdef _MSC_VER
/* disable: "warning C4049: compiler limit : terminating line number emission" */

View File

@ -1,4 +1,4 @@
/* packet-rlc.c
/* packet-umts_rlc.c
* Routines for UMTS RLC (Radio Link Control) v9.3.0 disassembly
* http://www.3gpp.org/ftp/Specs/archive/25_series/25.322/
*
@ -37,7 +37,7 @@
* */
#include "packet-umts_fp.h"
#include "packet-rlc.h"
#include "packet-umts_rlc.h"
#include "packet-rrc.h"
/* TODO:

View File

@ -1,4 +1,4 @@
/* packet-rlc.h
/* packet-umts_rlc.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>