summaryrefslogtreecommitdiff
path: root/plugins/docsis/Makefile.nmake
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-02-01 05:44:20 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-02-01 05:44:20 +0000
commite5e25269c9c11fc05ade2581ad7996439b45a208 (patch)
tree064917225b87406fd18c4f8dc7cd7107aa44d474 /plugins/docsis/Makefile.nmake
parentc8dd927e0c6dd23f065c965f08e4921ed2635fda (diff)
downloadwireshark-e5e25269c9c11fc05ade2581ad7996439b45a208.tar.gz
From Eric Hultin:
This patch adds support for dissection of the DCC packet as defined in CableLab's (http://www.cablelabs.com/) DOCSIS Radio Frequency Interface (RFI) specification. The latest version of this specification is currently available at http://www.cablemodem.com/specifications/specifications20.html . Packet formats for DCC are defined in sections 8.3.20 (DCC-REQ), 8.3.21 (DCC-RSP), and 8.3.22 (DCC-ACK) of the RFI specifications (referencing version CM-SP-RFIv2.0-I10-051209). In addition, this patch adds support for the DCD packet as defined in the DOCSIS Set-Top Gateway (DSG) Specification. The latest version of this specification is currently available at http://www.cablemodem.com/specifications/gateway.html . The format of the DCD packet is defined in section 5.3.1 of the DSG specification (referencing version CM-SP-DSG-I06-051209). svn path=/trunk/; revision=17138
Diffstat (limited to 'plugins/docsis/Makefile.nmake')
-rw-r--r--plugins/docsis/Makefile.nmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/docsis/Makefile.nmake b/plugins/docsis/Makefile.nmake
index ea8916603a..add44886a2 100644
--- a/plugins/docsis/Makefile.nmake
+++ b/plugins/docsis/Makefile.nmake
@@ -27,7 +27,9 @@ OBJECTS=packet-intrngreq.obj packet-type29ucd.obj \
packet-dsaack.obj packet-dsdreq.obj \
packet-regrsp.obj packet-ucd.obj \
packet-dsareq.obj packet-dsdrsp.obj \
- packet-rngreq.obj packet-vendor.obj
+ packet-rngreq.obj packet-vendor.obj \
+ packet-dccack.obj packet-dccreq.obj \
+ packet-dccrsp.obj packet-dcd.obj
docsis.dll docsis.exp docsis.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
link -dll /out:docsis.dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \