aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBalint Reczey <balint@balintreczey.hu>2023-12-19 22:02:00 +0100
committerGerald Combs <gerald@wireshark.org>2024-04-19 22:40:18 +0000
commit80156b405cc4cd139296cd5fc3f87114d0b5f534 (patch)
treea2f5250d8dcd3d8bf4fc2302634cbbfa625da31c
parent539f85782caf8fa915da634d2138e2088b1d49ae (diff)
Revert "plugins: Fill in short description field"
This reverts commit 60f1972fa3700d8d702e0f9b0df6ec1980d97ecb.
-rw-r--r--cmake/modules/UseMakePluginReg.cmake4
-rw-r--r--plugins/codecs/G711/CMakeLists.txt1
-rw-r--r--plugins/codecs/G722/CMakeLists.txt1
-rw-r--r--plugins/codecs/G726/CMakeLists.txt1
-rw-r--r--plugins/codecs/G729/CMakeLists.txt1
-rw-r--r--plugins/codecs/amrnb/CMakeLists.txt1
-rw-r--r--plugins/codecs/iLBC/CMakeLists.txt1
-rw-r--r--plugins/codecs/l16_mono/CMakeLists.txt1
-rw-r--r--plugins/codecs/opus_dec/CMakeLists.txt1
-rw-r--r--plugins/codecs/sbc/CMakeLists.txt1
-rw-r--r--plugins/epan/ethercat/CMakeLists.txt1
-rw-r--r--plugins/epan/falco_bridge/CMakeLists.txt1
-rw-r--r--plugins/epan/gryphon/CMakeLists.txt1
-rw-r--r--plugins/epan/irda/CMakeLists.txt1
-rw-r--r--plugins/epan/mate/CMakeLists.txt1
-rw-r--r--plugins/epan/opcua/CMakeLists.txt1
-rw-r--r--plugins/epan/pluginifdemo/CMakeLists.txt1
-rw-r--r--plugins/epan/profinet/CMakeLists.txt1
-rw-r--r--plugins/epan/stats_tree/CMakeLists.txt1
-rw-r--r--plugins/epan/transum/CMakeLists.txt1
-rw-r--r--plugins/epan/unistim/CMakeLists.txt1
-rw-r--r--plugins/epan/wimax/CMakeLists.txt1
-rw-r--r--plugins/epan/wimaxasncp/CMakeLists.txt1
-rw-r--r--plugins/epan/wimaxmacphy/CMakeLists.txt1
-rw-r--r--plugins/wiretap/usbdump/CMakeLists.txt1
-rwxr-xr-xtools/make-plugin-reg.py5
-rw-r--r--wsutil/plugins.c2
27 files changed, 4 insertions, 31 deletions
diff --git a/cmake/modules/UseMakePluginReg.cmake b/cmake/modules/UseMakePluginReg.cmake
index 26ac0f9809..0c7198d8f4 100644
--- a/cmake/modules/UseMakePluginReg.cmake
+++ b/cmake/modules/UseMakePluginReg.cmake
@@ -1,5 +1,5 @@
#
-function(register_plugin_files _outputfile _registertype _blurb)
+function(register_plugin_files _outputfile _registertype)
file(RELATIVE_PATH output "${CMAKE_BINARY_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/${_outputfile}")
add_custom_command(
OUTPUT
@@ -8,12 +8,10 @@ function(register_plugin_files _outputfile _registertype _blurb)
${CMAKE_SOURCE_DIR}/tools/make-plugin-reg.py
${CMAKE_CURRENT_SOURCE_DIR}
${_registertype}
- ${_blurb}
${ARGN}
COMMENT "Generating ${output}"
DEPENDS
${ARGN}
${CMAKE_SOURCE_DIR}/tools/make-plugin-reg.py
- VERBATIM
)
endfunction()
diff --git a/plugins/codecs/G711/CMakeLists.txt b/plugins/codecs/G711/CMakeLists.txt
index 340d40fa89..cc9ff0f191 100644
--- a/plugins/codecs/G711/CMakeLists.txt
+++ b/plugins/codecs/G711/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "A-law G.711"
${CODEC_SRC}
)
diff --git a/plugins/codecs/G722/CMakeLists.txt b/plugins/codecs/G722/CMakeLists.txt
index 751b2abf11..37c08cd12e 100644
--- a/plugins/codecs/G722/CMakeLists.txt
+++ b/plugins/codecs/G722/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "G.722"
${CODEC_SRC}
)
diff --git a/plugins/codecs/G726/CMakeLists.txt b/plugins/codecs/G726/CMakeLists.txt
index 84e2e7ec4b..239b67f0e5 100644
--- a/plugins/codecs/G726/CMakeLists.txt
+++ b/plugins/codecs/G726/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "G.726"
${CODEC_SRC}
)
diff --git a/plugins/codecs/G729/CMakeLists.txt b/plugins/codecs/G729/CMakeLists.txt
index 1f6ca835e3..6c5330021f 100644
--- a/plugins/codecs/G729/CMakeLists.txt
+++ b/plugins/codecs/G729/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "G.729"
${CODEC_SRC}
)
diff --git a/plugins/codecs/amrnb/CMakeLists.txt b/plugins/codecs/amrnb/CMakeLists.txt
index 12c06b60db..b49314689e 100644
--- a/plugins/codecs/amrnb/CMakeLists.txt
+++ b/plugins/codecs/amrnb/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "OpenCORE Adaptive Multi Rate (AMR)"
${CODEC_SRC}
)
diff --git a/plugins/codecs/iLBC/CMakeLists.txt b/plugins/codecs/iLBC/CMakeLists.txt
index 816df5c28c..8929204301 100644
--- a/plugins/codecs/iLBC/CMakeLists.txt
+++ b/plugins/codecs/iLBC/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "Internet Low Bitrate Codec (iLBC)"
${CODEC_SRC}
)
diff --git a/plugins/codecs/l16_mono/CMakeLists.txt b/plugins/codecs/l16_mono/CMakeLists.txt
index 72a82c4a58..f90713b70b 100644
--- a/plugins/codecs/l16_mono/CMakeLists.txt
+++ b/plugins/codecs/l16_mono/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "16-bit audio, mono"
${CODEC_SRC}
)
diff --git a/plugins/codecs/opus_dec/CMakeLists.txt b/plugins/codecs/opus_dec/CMakeLists.txt
index 400dd83717..dc3bdc2180 100644
--- a/plugins/codecs/opus_dec/CMakeLists.txt
+++ b/plugins/codecs/opus_dec/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "Opus audio"
${CODEC_SRC}
)
diff --git a/plugins/codecs/sbc/CMakeLists.txt b/plugins/codecs/sbc/CMakeLists.txt
index 8360ed3a15..d12de70d59 100644
--- a/plugins/codecs/sbc/CMakeLists.txt
+++ b/plugins/codecs/sbc/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_codec
- "Bluetooth SBC"
${CODEC_SRC}
)
diff --git a/plugins/epan/ethercat/CMakeLists.txt b/plugins/epan/ethercat/CMakeLists.txt
index 423eb99ae3..afa46e8272 100644
--- a/plugins/epan/ethercat/CMakeLists.txt
+++ b/plugins/epan/ethercat/CMakeLists.txt
@@ -35,7 +35,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "EtherCAT (Ethernet for Control Automation Technology) dissection"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/falco_bridge/CMakeLists.txt b/plugins/epan/falco_bridge/CMakeLists.txt
index 00762568f1..f913b390c0 100644
--- a/plugins/epan/falco_bridge/CMakeLists.txt
+++ b/plugins/epan/falco_bridge/CMakeLists.txt
@@ -35,7 +35,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "Implements a bridge between Falco plugins and Wireshark"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/gryphon/CMakeLists.txt b/plugins/epan/gryphon/CMakeLists.txt
index 7ed77bf2da..e047c06911 100644
--- a/plugins/epan/gryphon/CMakeLists.txt
+++ b/plugins/epan/gryphon/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "Gryphon automotive network tool protocol"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/irda/CMakeLists.txt b/plugins/epan/irda/CMakeLists.txt
index 9e647bab1f..31bfe89720 100644
--- a/plugins/epan/irda/CMakeLists.txt
+++ b/plugins/epan/irda/CMakeLists.txt
@@ -31,7 +31,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "IrDA dissection"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/mate/CMakeLists.txt b/plugins/epan/mate/CMakeLists.txt
index b7db2a1100..62b6c09048 100644
--- a/plugins/epan/mate/CMakeLists.txt
+++ b/plugins/epan/mate/CMakeLists.txt
@@ -45,7 +45,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "Meta Analysis Tracing Engine (MATE)"
${DISSECTOR_SRC}
${DISSECTOR_SUPPORT_SRC}
)
diff --git a/plugins/epan/opcua/CMakeLists.txt b/plugins/epan/opcua/CMakeLists.txt
index c8e285dd50..7299358f7d 100644
--- a/plugins/epan/opcua/CMakeLists.txt
+++ b/plugins/epan/opcua/CMakeLists.txt
@@ -45,7 +45,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "OpcUa (OPC Unified Architecture) dissection"
${DISSECTOR_SRC}
${DISSECTOR_SUPPORT_SRC}
)
diff --git a/plugins/epan/pluginifdemo/CMakeLists.txt b/plugins/epan/pluginifdemo/CMakeLists.txt
index cddc6095ad..95c05a032a 100644
--- a/plugins/epan/pluginifdemo/CMakeLists.txt
+++ b/plugins/epan/pluginifdemo/CMakeLists.txt
@@ -53,7 +53,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "Qt demonstration plugin"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/profinet/CMakeLists.txt b/plugins/epan/profinet/CMakeLists.txt
index 3543590fe0..7e6ca56bba 100644
--- a/plugins/epan/profinet/CMakeLists.txt
+++ b/plugins/epan/profinet/CMakeLists.txt
@@ -43,7 +43,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "PROFINET dissector"
${DISSECTOR_SRC}
${DISSECTOR_SUPPORT_SRC}
)
diff --git a/plugins/epan/stats_tree/CMakeLists.txt b/plugins/epan/stats_tree/CMakeLists.txt
index 4dd5367cbe..7986d870bb 100644
--- a/plugins/epan/stats_tree/CMakeLists.txt
+++ b/plugins/epan/stats_tree/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_tap
- "Statistics for ethernet frames"
${TAP_SRC}
)
diff --git a/plugins/epan/transum/CMakeLists.txt b/plugins/epan/transum/CMakeLists.txt
index 14741727f7..d26d4e464a 100644
--- a/plugins/epan/transum/CMakeLists.txt
+++ b/plugins/epan/transum/CMakeLists.txt
@@ -35,7 +35,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "Response time information based on the RTE model"
${DISSECTOR_SRC}
${DISSECTOR_SUPPORT_SRC}
)
diff --git a/plugins/epan/unistim/CMakeLists.txt b/plugins/epan/unistim/CMakeLists.txt
index b31073425e..b44ca8bcad 100644
--- a/plugins/epan/unistim/CMakeLists.txt
+++ b/plugins/epan/unistim/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "Unified Networks IP Stimulus (UNIStim) dissection"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/wimax/CMakeLists.txt b/plugins/epan/wimax/CMakeLists.txt
index b80399bb4a..50c3a7a34b 100644
--- a/plugins/epan/wimax/CMakeLists.txt
+++ b/plugins/epan/wimax/CMakeLists.txt
@@ -75,7 +75,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "WiMax Protocol dissector"
${DISSECTOR_SRC}
${DISSECTOR_SUPPORT_SRC}
)
diff --git a/plugins/epan/wimaxasncp/CMakeLists.txt b/plugins/epan/wimaxasncp/CMakeLists.txt
index 9dfe33b435..4775ef9876 100644
--- a/plugins/epan/wimaxasncp/CMakeLists.txt
+++ b/plugins/epan/wimaxasncp/CMakeLists.txt
@@ -33,7 +33,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "WiMAX ASN Control Plane dissection"
${DISSECTOR_SRC}
)
diff --git a/plugins/epan/wimaxmacphy/CMakeLists.txt b/plugins/epan/wimaxmacphy/CMakeLists.txt
index 83314bb727..b3e4e3257c 100644
--- a/plugins/epan/wimaxmacphy/CMakeLists.txt
+++ b/plugins/epan/wimaxmacphy/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin
- "WiMAX MAC PHY over Ethernet dissection"
${DISSECTOR_SRC}
)
diff --git a/plugins/wiretap/usbdump/CMakeLists.txt b/plugins/wiretap/usbdump/CMakeLists.txt
index e1b4489cfa..14fab19de3 100644
--- a/plugins/wiretap/usbdump/CMakeLists.txt
+++ b/plugins/wiretap/usbdump/CMakeLists.txt
@@ -29,7 +29,6 @@ set_source_files_properties(
register_plugin_files(plugin.c
plugin_wtap
- "Add support for reading FreeBSD usbdump(8) files"
${WIRETAP_SRC}
)
diff --git a/tools/make-plugin-reg.py b/tools/make-plugin-reg.py
index 8747a12987..34df09a847 100755
--- a/tools/make-plugin-reg.py
+++ b/tools/make-plugin-reg.py
@@ -21,11 +21,12 @@ registertype = sys.argv[2]
#
# The third argument is the plugin short description
#
-plugin_blurb = sys.argv[3]
+#plugin_blurb = sys.argv[3]
+plugin_blurb = "FIXME"
#
# All subsequent arguments are the files to scan.
#
-files = sys.argv[4:]
+files = sys.argv[3:]
final_filename = "plugin.c"
preamble = """\
diff --git a/wsutil/plugins.c b/wsutil/plugins.c
index 0b2e972b04..d8969d4608 100644
--- a/wsutil/plugins.c
+++ b/wsutil/plugins.c
@@ -228,8 +228,6 @@ DIAG_ON_PEDANTIC
/* Add it to the list of plugins. */
g_hash_table_replace(plugins_module, new_plug->name, new_plug);
ws_info("Registered plugin: %s (%s)", new_plug->name, plugin_file);
- ws_debug("plugin '%s' meta data: version = %s, flags = 0x%"PRIu32", spdx = %s, blurb = %s",
- name, module->version, module->flags, module->spdx_id, module->blurb);
g_free(plugin_file);
}
ws_dir_close(dir);