Skip to content

Commit

Permalink
Added a dissector plugin for Packet Cable Lawful Intercept.
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=6366
  • Loading branch information
Ed Warnicke committed Oct 3, 2002
1 parent cb92241 commit b54b76e
Show file tree
Hide file tree
Showing 15 changed files with 671 additions and 11 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,7 @@ Craig Rodrigues <rodrigc[AT]mediaone.net> {

Ed Warnicke <hagbard[AT]physics.rutgers.edu> {
MGCP dissector plugin
PCLI ( Packet Cable Lawful Intercept ) dissector plugin
}

Johan Jorgensen <johan.jorgensen[AT]axis.com> {
Expand Down
15 changes: 9 additions & 6 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.505 2002/09/29 19:10:05 gerald Exp $
# $Id: Makefile.am,v 1.506 2002/10/03 02:56:54 hagbard Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
Expand Down Expand Up @@ -402,8 +402,8 @@ plugin_src = \
plugins/giop/packet-cosnaming.c \
plugins/giop/packet-coseventcomm.c \
plugins/gryphon/packet-gryphon.c \
plugins/mgcp/packet-mgcp.c

plugins/mgcp/packet-mgcp.c \
plugins/pcli/packet-pcli.c

plugin_static_ldadd = \
plugins/docsis/packet-bpkmattr-static.o \
Expand Down Expand Up @@ -432,22 +432,25 @@ plugin_static_ldadd = \
plugins/giop/packet-cosnaming-static.o \
plugins/giop/packet-coseventcomm-static.o \
plugins/gryphon/packet-gryphon-static.o \
plugins/mgcp/packet-mgcp-static.o
plugins/mgcp/packet-mgcp-static.o \
plugins/pcli/packet-pcli-static.o

plugin_libs = \
plugins/docsis/docsis.la \
plugins/giop/cosnaming.la \
plugins/giop/coseventcomm.la \
plugins/gryphon/gryphon.la \
plugins/mgcp/mgcp.la
plugins/mgcp/mgcp.la \
plugins/pcli/pcli.la

plugin_ldadd = \
"-dlopen" self \
"-dlopen" plugins/docsis/docsis.la \
"-dlopen" plugins/giop/cosnaming.la \
"-dlopen" plugins/giop/coseventcomm.la \
"-dlopen" plugins/gryphon/gryphon.la \
"-dlopen" plugins/mgcp/mgcp.la
"-dlopen" plugins/mgcp/mgcp.la \
"-dlopen" plugins/pcli/pcli.la
else
plugin_src =

Expand Down
3 changes: 2 additions & 1 deletion configure.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $Id: configure.in,v 1.179 2002/09/26 19:06:40 gerald Exp $
# $Id: configure.in,v 1.180 2002/10/03 02:56:55 hagbard Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
Expand Down Expand Up @@ -717,6 +717,7 @@ AC_OUTPUT(
plugins/giop/Makefile
plugins/gryphon/Makefile
plugins/mgcp/Makefile
plugins/pcli/Makefile
tools/Makefile
tools/lemon/Makefile
,)
Expand Down
4 changes: 2 additions & 2 deletions plugins/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.11 2002/07/12 22:52:39 guy Exp $
# $Id: Makefile.am,v 1.12 2002/10/03 02:56:57 hagbard Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
Expand All @@ -21,7 +21,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

SUBDIRS = docsis giop gryphon mgcp
SUBDIRS = docsis giop gryphon mgcp pcli

plugindir = @plugindir@

Expand Down
11 changes: 9 additions & 2 deletions plugins/Makefile.nmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Id: Makefile.nmake,v 1.14 2002/07/12 22:52:39 guy Exp $
# $Id: Makefile.nmake,v 1.15 2002/10/03 02:56:57 hagbard Exp $
#

include ..\config.nmake
Expand All @@ -13,7 +13,7 @@ CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. \

OBJECTS=plugin_api.obj

all: plugin_api.obj docsis giop gryphon mgcp
all: plugin_api.obj docsis giop gryphon mgcp pcli

docsis::
cd docsis
Expand All @@ -35,6 +35,11 @@ mgcp::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..

pcli::
cd pcli
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..

clean:
rm -f plugin_api.obj $(PDB_FILE)
cd docsis
Expand All @@ -45,4 +50,6 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../mgcp
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../pcli
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
19 changes: 19 additions & 0 deletions plugins/pcli/.cvsignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.deps
.libs
Makefile
Makefile.in
config.cache
config.h
config.h.in
config.log
config.status
configure
mgcp.la
packet-mgcp.lo
packet-mgcp-static.lo
stamp-h
*.obj
*.dll
*.exp
*.lib
*.pdb
3 changes: 3 additions & 0 deletions plugins/pcli/AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Author :
Ed Warnicke <hagbard@physics.rutgers.edu>

Loading

0 comments on commit b54b76e

Please sign in to comment.