New dissector for the FIX protocol by PC Drew

svn path=/trunk/; revision=6298
This commit is contained in:
Jörg Mayer 2002-09-16 17:49:20 +00:00
parent f2cce7516c
commit 365a9e0224
5 changed files with 6271 additions and 5 deletions

10
AUTHORS
View File

@ -1409,15 +1409,21 @@ Matthew Smart <smart[AT]monkey.org> {
Cisco NetFlow protocol support
}
Jamie Fournier <jafour1[AT]yahoo.com>
Jamie Fournier <jafour1[AT]yahoo.com> {
DCE/RPC dissectors for RSEC_LOGIN, RS_ACCT, RS_ATTR, RS_MISC, RS_PGO,
RS_REPLIST, RS_UNIX, RPRIV, ROVERRIDE, RS_REPADM,
DTSSTIME_REQ, CDS_SOLICIT, CPRPC_SERVER, DTSPROVIDER,
UBIKDISK, UBIKVOTE, BOSSVR, FTSERVER, CDS_CLERKSERVER,
KRB5RPC, REP_PROC, SECIDMAP, TKN4INT, FLDB, AFS4INT
}
Luke Howard <lukeh[AT]au.padl.com>
Luke Howard <lukeh[AT]au.padl.com> {
NETLOGON bugfix for LogonGetDomainInfo
}
PC Drew <drewpc[AT]ibsncentral.com> {
Dissector for the FIX protocol
}
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.499 2002/09/13 10:36:55 sahlberg Exp $
# $Id: Makefile.am,v 1.500 2002/09/16 17:49:17 jmayer Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -21,7 +21,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
ACLOCAL_AMFLAGS = `./aclocal-flags`
#topdir = .
ACLOCAL_AMFLAGS = "`./aclocal-flags`"
#
# This is a hideous hack.
@ -175,6 +176,7 @@ DISSECTOR_SRC = \
packet-eth.c \
packet-ethertype.c \
packet-fddi.c \
packet-fix.c \
packet-fr.c \
packet-frame.c \
packet-ftp.c \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.236 2002/09/13 10:36:55 sahlberg Exp $
# $Id: Makefile.nmake,v 1.237 2002/09/16 17:49:17 jmayer Exp $
include config.nmake
include <win32.mak>
@ -116,6 +116,7 @@ DISSECTOR_SRC = \
packet-eth.c \
packet-ethertype.c \
packet-fddi.c \
packet-fix.c \
packet-fr.c \
packet-frame.c \
packet-ftp.c \

View File

@ -1517,6 +1517,7 @@ B<http://www.ethereal.com>.
Marcus Haebler <haeblerm[AT]yahoo.com>
Ulf Lamping <ulf.lamping[AT]web.de>
Matthew Smart <smart[AT]monkey.org>
PC Drew <drewpc[AT]ibsncentral.com>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.

6256
packet-fix.c Normal file

File diff suppressed because it is too large Load Diff