aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-docsis.h
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/packet-docsis.h
parentc8dd927e0c6dd23f065c965f08e4921ed2635fda (diff)
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/packet-docsis.h')
-rw-r--r--plugins/docsis/packet-docsis.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/docsis/packet-docsis.h b/plugins/docsis/packet-docsis.h
index 1e7f595e48..76fe232152 100644
--- a/plugins/docsis/packet-docsis.h
+++ b/plugins/docsis/packet-docsis.h
@@ -48,6 +48,10 @@ void proto_reg_handoff_docsis_uccreq (void);
void proto_reg_handoff_docsis_uccrsp (void);
void proto_reg_handoff_docsis_ucd (void);
void proto_reg_handoff_docsis_type29ucd (void);
+void proto_reg_handoff_docsis_dcd (void);
+void proto_reg_handoff_docsis_dccreq (void);
+void proto_reg_handoff_docsis_dccrsp (void);
+void proto_reg_handoff_docsis_dccack (void);
void proto_reg_handoff_docsis_vsif (void);
void proto_reg_handoff_docsis_intrngreq (void);
@@ -76,6 +80,10 @@ void proto_register_docsis_uccreq (void);
void proto_register_docsis_uccrsp (void);
void proto_register_docsis_ucd (void);
void proto_register_docsis_type29ucd (void);
+void proto_register_docsis_dcd (void);
+void proto_register_docsis_dccreq (void);
+void proto_register_docsis_dccrsp (void);
+void proto_register_docsis_dccack (void);
void proto_register_docsis_vsif (void);
void proto_register_docsis_intrngreq (void);
#endif