aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-01-20 09:09:26 +0000
committerJörg Mayer <jmayer@loplof.de>2006-01-20 09:09:26 +0000
commit4ab485600cd80d162014ce1f8444a85d982c9597 (patch)
tree31f64f525c605cce37bb5c61db8647f1af52625a /plugins
parent256225d73f9b4740e9dac67a48ac8de6b9fb8b9a (diff)
Add the commit message as README
svn propset svn:keywords Id * svn propset svn:eol-style native * Todo: svn propset svn:ignore . Because I don't know what to ignore svn path=/trunk/; revision=17059
Diffstat (limited to 'plugins')
-rw-r--r--plugins/lua/Makefile.am2
-rw-r--r--plugins/lua/README18
-rw-r--r--plugins/lua/packet-lua.c2
-rw-r--r--plugins/lua/plugin.c27
4 files changed, 47 insertions, 2 deletions
diff --git a/plugins/lua/Makefile.am b/plugins/lua/Makefile.am
index d55f1e418b..c08fcdc3a1 100644
--- a/plugins/lua/Makefile.am
+++ b/plugins/lua/Makefile.am
@@ -1,6 +1,6 @@
# Makefile.am
#
-# $Id: $
+# $Id$
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
diff --git a/plugins/lua/README b/plugins/lua/README
new file mode 100644
index 0000000000..544f2cfd2e
--- /dev/null
+++ b/plugins/lua/README
@@ -0,0 +1,18 @@
+Starts to work so I check it in.
+
+This is an interface to the Lua programming language.
+
+http://www.lua.org
+
+I've already wrote a simple dissector that calls another dissectors.
+
+soon It will be able to register a tap and do something more.
+
+I did not checkin changes to the Makefiles so in order to use it you must change the
+makefiles.
+
+Other than that to get it to work you need to download lua-5.0.2.tar.gz into the plugin
+directory, uncompress it, cd to it and call make.
+
+the interface is buggy and far from finished, time will help on this.
+
diff --git a/plugins/lua/packet-lua.c b/plugins/lua/packet-lua.c
index 1895bd42c5..4e698f553a 100644
--- a/plugins/lua/packet-lua.c
+++ b/plugins/lua/packet-lua.c
@@ -5,7 +5,7 @@
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
- * $Id: $
+ * $Id$
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
diff --git a/plugins/lua/plugin.c b/plugins/lua/plugin.c
index 13b27745b4..23f8a84fc8 100644
--- a/plugins/lua/plugin.c
+++ b/plugins/lua/plugin.c
@@ -1,3 +1,30 @@
+/*
+ * plugin.c
+ *
+ * Ethereal's interface to the Lua Programming Language
+ *
+ * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
#ifdef HAVE_CONFIG_H
#include "config.h"