wslua: Cross-reference and title case fixes.

Use lua_class_DissectorTable instead of lua_class_DissectorTables.

Use title case for each module.

Change-Id: Ie855022ee59a857c8ced7c3e6ba070ab494fa017
Reviewed-on: https://code.wireshark.org/review/36634
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2020-03-30 08:57:16 -07:00
parent e53cb23b1f
commit 6f59b8e84d
11 changed files with 12 additions and 12 deletions

View File

@ -12,7 +12,7 @@
#include "config.h"
/* WSLUA_MODULE Dir Directory handling functions */
/* WSLUA_MODULE Dir Directory Handling Functions */
#include "wslua.h"
#include <wsutil/file_util.h>

View File

@ -16,7 +16,7 @@
#include <epan/wmem/wmem.h>
/* WSLUA_MODULE Dumper Saving capture files
/* WSLUA_MODULE Dumper Saving Capture Files
The classes/functions defined in this module are for using a `Dumper` object to
make Wireshark save a capture file to disk. `Dumper` represents Wireshark's built-in

View File

@ -17,7 +17,7 @@
#include <epan/dfilter/dfilter.h>
#include <epan/ftypes/ftypes-int.h>
/* WSLUA_MODULE Field Obtaining dissection data */
/* WSLUA_MODULE Field Obtaining Dissection Data */
#include "wslua.h"

View File

@ -20,7 +20,7 @@
#define MAX_LINE_LENGTH 65536
/* WSLUA_MODULE File Custom file format reading/writing
/* WSLUA_MODULE File Custom File Format Reading And Writing
The classes/functions defined in this section allow you to create your own
custom Lua-based "capture" file reader, or writer, or both.

View File

@ -16,7 +16,7 @@
#include "wslua.h"
/* WSLUA_MODULE Gui GUI support */
/* WSLUA_MODULE Gui GUI Support */
static const funnel_ops_t* ops = NULL;

View File

@ -16,7 +16,7 @@
#include "config.h"
/* WSLUA_MODULE Listener Post-dissection packet analysis */
/* WSLUA_MODULE Listener Post-Dissection Packet Analysis */
#include "wslua.h"

View File

@ -21,7 +21,7 @@
#include <string.h>
/* WSLUA_MODULE Pinfo Obtaining packet information */
/* WSLUA_MODULE Pinfo Obtaining Packet Information */
/*

View File

@ -20,12 +20,12 @@
#include <epan/dissectors/packet-tcp.h>
#include <epan/exceptions.h>
/* WSLUA_MODULE Proto Functions for new protocols and dissectors
/* WSLUA_MODULE Proto Functions For New Protocols And Dissectors
The classes and functions in this chapter allow Lua scripts to create new protocols for Wireshark.
<<lua_class_Proto,`Proto`>> protocol objects can have <<lua_class_Pref,`Pref`>> preferences, <<lua_class_ProtoField,`ProtoField`>> fields for filterable values that can be displayed in a details view tree, functions for dissecting the new protocol, and so on.
The dissection function can be hooked into existing protocol tables through <<lua_class_DissectorTables,`DissectorTables`>> so that the new protocol dissector function gets called by that protocol, and the new dissector can itself call on other, already existing protocol dissectors by retrieving and calling the <<lua_class_Dissector,`Dissector`>> object.
The dissection function can be hooked into existing protocol tables through <<lua_class_DissectorTable,`DissectorTable`>> so that the new protocol dissector function gets called by that protocol, and the new dissector can itself call on other, already existing protocol dissectors by retrieving and calling the <<lua_class_Dissector,`Dissector`>> object.
A <<lua_class_Proto,`Proto`>> dissector can also be used as a post-dissector, at the end of every frame's dissection, or as a heuristic dissector.
*/

View File

@ -15,7 +15,7 @@
#include "config.h"
/* WSLUA_MODULE Tree Adding information to the dissection tree */
/* WSLUA_MODULE Tree Adding Information To The Dissection Tree */
#include "wslua.h"
#include <epan/exceptions.h>

View File

@ -21,7 +21,7 @@
#include <epan/wmem/wmem.h>
/* WSLUA_MODULE Tvb Functions for handling packet data */
/* WSLUA_MODULE Tvb Functions For Handling Packet Data */
/*

View File

@ -12,7 +12,7 @@
#include "config.h"
/* WSLUA_MODULE Utility Functions */
/* WSLUA_MODULE Utility Utility Functions */
#include "wslua.h"
#include <math.h>