diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-14 01:17:44 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-14 01:17:44 +0000 |
commit | 6de6ff2fb81105e22516559f4b9270ff32e8510b (patch) | |
tree | ee4400dbef9936264ee3ffc80a744a2a34d37366 /Makefile.nmake | |
parent | 4744edb0bedb8348023e97d6ec138e486debc794 (diff) | |
download | wireshark-6de6ff2fb81105e22516559f4b9270ff32e8510b.tar.gz wireshark-6de6ff2fb81105e22516559f4b9270ff32e8510b.tar.bz2 wireshark-6de6ff2fb81105e22516559f4b9270ff32e8510b.zip |
From Dinesh Dutt:
- Decoders for the few remaining FC protocols not included in my first
patch. Included in this list are decoders for FC-CT (common transport),
Name Server (dNS), Fabric Configuration Server (FCS) and Zone Server
(FZS).
- Decoder for MDS Debug Port Adapter. MDS Debug Port Adapter (internal
name was Boardwalk and this is the file name) is a piece of hardware
that can be purchased with Cisco's MDS Fibre Channel switches that
converts FC frames into Ethernet frames. One end is connected to a
port on a FC switch and the other end is connected to a FE/GE Ethernet
port. The decoder included here decodes the encapsulation header that
carries information such as SOF/EOF of FC frames.
svn path=/trunk/; revision=6919
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index 6ca32ebffe..5bc2ff988d 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -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.269 2003/01/08 05:03:51 guy Exp $ +# $Id: Makefile.nmake,v 1.270 2003/01/14 01:17:44 guy Exp $ include config.nmake include <win32.mak> @@ -46,6 +46,7 @@ DISSECTOR_SRC = \ packet-bootp.c \ packet-bootparams.c \ packet-bpdu.c \ + packet-brdwlk.c \ packet-bvlc.c \ packet-cdp.c \ packet-cgmp.c \ @@ -123,7 +124,11 @@ DISSECTOR_SRC = \ packet-eth.c \ packet-ethertype.c \ packet-fc.c \ + packet-fcct.c \ + packet-fcdns.c \ packet-fcels.c \ + packet-fcfcs.c \ + packet-fcfzs.c \ packet-fcip.c \ packet-fclctl.c \ packet-fcp.c \ |