aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bootp.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-10 01:33:02 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-10 01:33:02 +0000
commita93c876335a38b7330ff917c4e050d3d72a082ac (patch)
tree3ea0b96d425cf6831ee9cd6ed5dce2e86255b467 /epan/dissectors/packet-bootp.c
parent080758322814281b3a1040f53e5cf65d7371804e (diff)
From Jason Burns: DHCP Dissector - Support for DHCP Option 150 TFTP Server Address
"According to this document DHCP Option 150 is an array of IPv4 TFTP Server Addresses http://cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00800942f4.shtml#tftp_option I fixed the capitalization of this option in the bootp dissector and changed the type to match the actual use of the option. (ipv4_list)" From me: Add a pointer to a draft RFC about the DHCP "TFTP Server Address" option. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33203 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-bootp.c')
-rw-r--r--epan/dissectors/packet-bootp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bootp.c b/epan/dissectors/packet-bootp.c
index f3f9172f9c..77cff4c17f 100644
--- a/epan/dissectors/packet-bootp.c
+++ b/epan/dissectors/packet-bootp.c
@@ -33,6 +33,7 @@
* RFC 5223: Discovering Location-to-Service Translation (LoST) Servers Using the Dynamic Host Configuration Protocol (DHCP)
* RFC 5417: CAPWAP Access Controller DHCP Option
* draft-ietf-dhc-fqdn-option-07.txt
+ * TFTP Server Address Option for DHCPv4 [draft-raj-dhc-tftp-addr-option-06.txt: http://tools.ietf.org/html/draft-raj-dhc-tftp-addr-option-06]
* BOOTP and DHCP Parameters
* http://www.iana.org/assignments/bootp-dhcp-parameters
* DOCSIS(TM) 2.0 Radio Frequency Interface Specification
@@ -671,7 +672,7 @@ static struct opt_info default_bootp_opt[BOOTP_OPT_NUM] = {
/* 147 */ { "Unassigned", opaque, NULL },
/* 148 */ { "Unassigned", opaque, NULL },
/* 149 */ { "Unassigned", opaque, NULL },
-/* 150 */ { "TFTP server address", opaque, NULL },
+/* 150 */ { "TFTP Server Address", ipv4_list, NULL },
/* 151 */ { "Unassigned", opaque, NULL },
/* 152 */ { "Unassigned", opaque, NULL },
/* 153 */ { "Unassigned", opaque, NULL },