aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/ethernet_types/ethernet_types.ba.go
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/ethernet_types/ethernet_types.ba.go')
-rw-r--r--binapi/ethernet_types/ethernet_types.ba.go53
1 files changed, 53 insertions, 0 deletions
diff --git a/binapi/ethernet_types/ethernet_types.ba.go b/binapi/ethernet_types/ethernet_types.ba.go
new file mode 100644
index 0000000..b54b1ef
--- /dev/null
+++ b/binapi/ethernet_types/ethernet_types.ba.go
@@ -0,0 +1,53 @@
+// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
+// versions:
+// binapi-generator: v0.4.0-dev
+// VPP: 20.05-release
+// source: /usr/share/vpp/api/core/ethernet_types.api.json
+
+// Package ethernet_types contains generated bindings for API file ethernet_types.api.
+//
+// Contents:
+// 1 alias
+//
+package ethernet_types
+
+import (
+ api "git.fd.io/govpp.git/api"
+ "net"
+)
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the GoVPP api package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// GoVPP api package needs to be updated.
+const _ = api.GoVppAPIPackageIsVersion2
+
+// MacAddress defines alias 'mac_address'.
+type MacAddress [6]uint8
+
+func ParseMacAddress(s string) (MacAddress, error) {
+ var macaddr MacAddress
+ mac, err := net.ParseMAC(s)
+ if err != nil {
+ return macaddr, err
+ }
+ copy(macaddr[:], mac[:])
+ return macaddr, nil
+}
+func (x MacAddress) ToMAC() net.HardwareAddr {
+ return net.HardwareAddr(x[:])
+}
+func (x MacAddress) String() string {
+ return x.ToMAC().String()
+}
+func (x *MacAddress) MarshalText() ([]byte, error) {
+ return []byte(x.String()), nil
+}
+func (x *MacAddress) UnmarshalText(text []byte) error {
+ mac, err := ParseMacAddress(string(text))
+ if err != nil {
+ return err
+ }
+ *x = mac
+ return nil
+}