diff options
author | Emanuele Fia <name29@users.noreply.github.com> | 2021-10-25 22:20:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 22:20:43 +0100 |
commit | b28ed3e9daf60f867fe8475745add4461356eaad (patch) | |
tree | 966157a57908cd96191b3b04ef00c0472ee032d5 /iana | |
parent | 0c623abe15f981f59d47fc27ecca98951da40a76 (diff) |
Adding support for parsing Ciena attributes in DHCPv4 (#450)
* Adding support for Ciena DHCPv4
Signed-off-by: Emanuele Fia <name29@fb.com>
Diffstat (limited to 'iana')
-rw-r--r-- | iana/entid.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/iana/entid.go b/iana/entid.go index df2ca13..dbcb51e 100644 --- a/iana/entid.go +++ b/iana/entid.go @@ -5,11 +5,13 @@ type EntID int // See https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers for values const ( - EntIDCiscoSystems EntID = 9 + EntIDCiscoSystems EntID = 9 + EntIDCienaCorporation EntID = 1271 ) var entIDToStringMap = map[EntID]string{ - EntIDCiscoSystems: "Cisco Systems", + EntIDCiscoSystems: "Cisco Systems", + EntIDCienaCorporation: "Ciena Corporation", } // String returns the vendor name for a given Enterprise ID |