summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/bsdp/vendor_class_identifier_darwin.go
diff options
context:
space:
mode:
authorinsomniac <insomniacslk@users.noreply.github.com>2018-08-17 12:59:51 +0100
committerGitHub <noreply@github.com>2018-08-17 12:59:51 +0100
commit1634051fac07646adc76715c600f4df0a2598b22 (patch)
treec28fb1c8369b966164d2c9bc239183ecd32fb303 /dhcpv4/bsdp/vendor_class_identifier_darwin.go
parentbcc8c0ec8cd12d2777e9085ffafcbef4c16bf73b (diff)
parent206c8032f6b6c954019ca752df3b703da4597b07 (diff)
BSDP: Add code to generate ACKs for INFORMs (#136)
Diffstat (limited to 'dhcpv4/bsdp/vendor_class_identifier_darwin.go')
-rw-r--r--dhcpv4/bsdp/vendor_class_identifier_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv4/bsdp/vendor_class_identifier_darwin.go b/dhcpv4/bsdp/vendor_class_identifier_darwin.go
index 530d843..d1b4c2b 100644
--- a/dhcpv4/bsdp/vendor_class_identifier_darwin.go
+++ b/dhcpv4/bsdp/vendor_class_identifier_darwin.go
@@ -13,5 +13,5 @@ func MakeVendorClassIdentifier() (string, error) {
if err != nil {
return "", err
}
- return fmt.Sprintf("AAPLBSDPC/i386/%s", hwModel), nil
+ return fmt.Sprintf("%s/i386/%s", AppleVendorID, hwModel), nil
}