aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lua
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-05-28 16:32:49 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-05-28 16:32:49 +0000
commitdb57e7b72403ac766f8be66092d91dec7fd0d8bc (patch)
tree3bdd3b15f8a6c06387141fdf5598761977465ad2 /plugins/lua
parent7056661eaccfc0eafa651c45cbc64b2707bb11db (diff)
Ethereal->Wireshark
svn path=/trunk/; revision=18231
Diffstat (limited to 'plugins/lua')
-rw-r--r--plugins/lua/elua.c2
-rw-r--r--plugins/lua/elua.h2
-rw-r--r--plugins/lua/elua_dumper.c2
-rw-r--r--plugins/lua/elua_field.c2
-rw-r--r--plugins/lua/elua_gui.c2
-rw-r--r--plugins/lua/elua_pinfo.c2
-rw-r--r--plugins/lua/elua_plugin.c2
-rw-r--r--plugins/lua/elua_proto.c2
-rw-r--r--plugins/lua/elua_tap.c4
-rw-r--r--plugins/lua/elua_tree.c2
-rw-r--r--plugins/lua/elua_tvb.c4
11 files changed, 13 insertions, 13 deletions
diff --git a/plugins/lua/elua.c b/plugins/lua/elua.c
index 6564688237..da5ab57d56 100644
--- a/plugins/lua/elua.c
+++ b/plugins/lua/elua.c
@@ -1,7 +1,7 @@
/*
* packet-lua.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua.h b/plugins/lua/elua.h
index 03d4b588c9..287c8e2769 100644
--- a/plugins/lua/elua.h
+++ b/plugins/lua/elua.h
@@ -1,7 +1,7 @@
/*
* packet-lua.h
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_dumper.c b/plugins/lua/elua_dumper.c
index 202bcacf09..2d0e75f9ce 100644
--- a/plugins/lua/elua_dumper.c
+++ b/plugins/lua/elua_dumper.c
@@ -1,7 +1,7 @@
/*
* lua_dumper.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_field.c b/plugins/lua/elua_field.c
index 37d3fed17b..d65df90f73 100644
--- a/plugins/lua/elua_field.c
+++ b/plugins/lua/elua_field.c
@@ -1,7 +1,7 @@
/*
* elua_field.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_gui.c b/plugins/lua/elua_gui.c
index fd9b384137..79c03e9274 100644
--- a/plugins/lua/elua_gui.c
+++ b/plugins/lua/elua_gui.c
@@ -499,7 +499,7 @@ ELUA_FUNCTION elua_retap_packets(lua_State* L) {
if ( ops->retap_packets ) {
ops->retap_packets();
} else {
- ELUA_ERROR(elua_retap_packets, "does not work on tethereal");
+ ELUA_ERROR(elua_retap_packets, "does not work on tWireshark");
}
return 0;
diff --git a/plugins/lua/elua_pinfo.c b/plugins/lua/elua_pinfo.c
index 37b2e85688..f569d1782e 100644
--- a/plugins/lua/elua_pinfo.c
+++ b/plugins/lua/elua_pinfo.c
@@ -1,7 +1,7 @@
/*
* lua_pinfo.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_plugin.c b/plugins/lua/elua_plugin.c
index 6f646c23a5..9cddf1062a 100644
--- a/plugins/lua/elua_plugin.c
+++ b/plugins/lua/elua_plugin.c
@@ -1,7 +1,7 @@
/*
* plugin.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_proto.c b/plugins/lua/elua_proto.c
index d6d3a8decf..3144f3101e 100644
--- a/plugins/lua/elua_proto.c
+++ b/plugins/lua/elua_proto.c
@@ -1,7 +1,7 @@
/*
* lua_proto.c
*
- * Ethereal's interface to the Lua Programming Language
+ * wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_tap.c b/plugins/lua/elua_tap.c
index 3ed4eb5fd8..451ec6867e 100644
--- a/plugins/lua/elua_tap.c
+++ b/plugins/lua/elua_tap.c
@@ -1,7 +1,7 @@
/*
* lua_tap.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
@@ -272,7 +272,7 @@ static int Tap_newindex(lua_State* L) {
function tap.packet(pinfo,tvb,userdata) ... end
*/
/* ELUA_ATTRIBUTE Tap_draw WO A function that will be called once every few seconds to redraw the gui objects
- in tethereal this funtion is called oly at the very end of the capture file.
+ in twireshark this funtion is called oly at the very end of the capture file.
function tap.draw(userdata) ... end
*/
diff --git a/plugins/lua/elua_tree.c b/plugins/lua/elua_tree.c
index e2d8e23074..9eb1866929 100644
--- a/plugins/lua/elua_tree.c
+++ b/plugins/lua/elua_tree.c
@@ -1,7 +1,7 @@
/*
* elua_tree.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
diff --git a/plugins/lua/elua_tvb.c b/plugins/lua/elua_tvb.c
index 1cbb61badb..6a48d107a2 100644
--- a/plugins/lua/elua_tvb.c
+++ b/plugins/lua/elua_tvb.c
@@ -1,7 +1,7 @@
/*
* lua_tvb.c
*
- * Ethereal's interface to the Lua Programming Language
+ * Wireshark's interface to the Lua Programming Language
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
@@ -287,7 +287,7 @@ int ByteArray_register(lua_State* L) {
*
* a Tvb represents a tvbuff_t in Lua.
* a TvbRange represents a range in a tvb (tvb,offset,lenght) it's main purpose is to do bounds checking,
- * it helps too simplifing argument passing to Tree. In ethereal terms this is worthless nothing
+ * it helps too simplifing argument passing to Tree. In wireshark terms this is worthless nothing
* not already done by the TVB itself. In lua's terms is necessary to avoid abusing TRY{}CATCH(){}
* via preemptive bounds checking.
*