From 6e24d5f69059dd10fd7b5752a9050b79d936a1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Sat, 30 Sep 2017 17:48:00 +0100 Subject: Unsplit "m2m" plugin (wimax mac-to-mac encapsulation) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... not to be confused with "machine-to-machine". M2M seems to be a simple Wimax encapsulation protocol developed by Intel. It's not documented publicly anywhere that I can find. The boilerplate to code ratio is huge and it even includes a complete source file from the Wimax dissector (yuck). Put it in the Wimax plugin instead. Minor version number bump for wimax plugin. Change-Id: I2694339dfe89be334093b257a5b34d1577f4dc20 Reviewed-on: https://code.wireshark.org/review/23790 Petri-Dish: João Valverde Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- plugins/m2m/CMakeLists.txt | 90 ---------------------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 plugins/m2m/CMakeLists.txt (limited to 'plugins/m2m/CMakeLists.txt') diff --git a/plugins/m2m/CMakeLists.txt b/plugins/m2m/CMakeLists.txt deleted file mode 100644 index 63c88d2871..0000000000 --- a/plugins/m2m/CMakeLists.txt +++ /dev/null @@ -1,90 +0,0 @@ -# CMakeLists.txt -# -# Wireshark - Network traffic analyzer -# By Gerald Combs -# Copyright 1998 Gerald Combs -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# - -include(WiresharkPlugin) - -# Plugin name and version info (major minor micro extra) -set_module_info(m2m 1 1 0 0) - -set(DISSECTOR_SRC - packet-m2m.c -) - -set(DISSECTOR_SUPPORT_SRC - wimax_tlv.c -) - -set(PLUGIN_FILES - plugin.c - ${DISSECTOR_SRC} - ${DISSECTOR_SUPPORT_SRC} -) - -set(CLEAN_FILES - ${PLUGIN_FILES} -) - -set_source_files_properties( - ${CLEAN_FILES} - PROPERTIES - COMPILE_FLAGS "${WERROR_COMMON_FLAGS}" -) - -include_directories(${CMAKE_CURRENT_SOURCE_DIR}) - -register_dissector_files(plugin.c - plugin - ${DISSECTOR_SRC} - ${DISSECTOR_SUPPORT_SRC} -) - -add_plugin_library(m2m) - -install(TARGETS m2m - LIBRARY DESTINATION ${PLUGIN_INSTALL_LIBDIR} NAMELINK_SKIP - RUNTIME DESTINATION ${PLUGIN_INSTALL_LIBDIR} - ARCHIVE DESTINATION ${PLUGIN_INSTALL_LIBDIR} -) - -file(GLOB DISSECTOR_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*.h") -CHECKAPI( - NAME - m2m - SWITCHES - -g abort -g termoutput -build - SOURCES - ${DISSECTOR_SRC} - ${DISSECTOR_SUPPORT_SRC} - ${DISSECTOR_HEADERS} -) - -# -# Editor modelines - http://www.wireshark.org/tools/modelines.html -# -# Local variables: -# c-basic-offset: 8 -# tab-width: 8 -# indent-tabs-mode: t -# End: -# -# vi: set shiftwidth=8 tabstop=8 noexpandtab: -# :indentSize=8:tabSize=8:noTabs=false: -# -- cgit v1.2.3