blob: 8e1559b865460a0856d22b900f58a1f9870afc6f [file] [log] [blame]
Neale Rannsde5b08f2018-08-29 06:37:18 -07001/*
2 * Copyright (c) 2018 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __MAC_ADDRESS_H__
17#define __MAC_ADDRESS_H__
18
19#include <vnet/ethernet/ethernet.h>
20
21typedef struct mac_address_t_
22{
23 u8 bytes[6];
24} mac_address_t;
25
26extern const mac_address_t ZERO_MAC_ADDRESS;
27
28static_always_inline void
29mac_address_from_bytes (mac_address_t * mac, const u8 * bytes)
30{
31 clib_memcpy (mac->bytes, bytes, sizeof (*mac));
32}
33
34static_always_inline int
35mac_address_is_zero (const mac_address_t * mac)
36{
37 return (ethernet_mac_address_is_zero (mac->bytes));
38}
39
40static_always_inline u64
41mac_address_as_u64 (const mac_address_t * mac)
42{
43 return (ethernet_mac_address_u64 (mac->bytes));
44}
45
46static_always_inline void
47mac_address_from_u64 (u64 u, mac_address_t * mac)
48{
49 ethernet_mac_address_from_u64 (u, mac->bytes);
50}
51
Neale Ranns86327be2018-11-02 09:14:01 -070052extern uword unformat_mac_address_t (unformat_input_t * input,
53 va_list * args);
Neale Rannsde5b08f2018-08-29 06:37:18 -070054extern u8 *format_mac_address_t (u8 * s, va_list * args);
55
56#endif
57
58/*
59 * fd.io coding-style-patch-verification: ON
60 *
61 * Local Variables:
62 * eval: (c-set-style "gnu")
63 * End:
64 */