mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-12 04:43:20 +00:00

This patch: - Adds a utility function for parsing a 64 bit address - Adds a utility function for converting a 64 bit address to ASCII - Adds and ILA encap type in lwt tunnels Signed-off-by: Tom Herbert <tom@herbertland.com>
16 lines
220 B
C
16 lines
220 B
C
/* ila.h - ILA Interface */
|
|
|
|
#ifndef _LINUX_ILA_H
|
|
#define _LINUX_ILA_H
|
|
|
|
enum {
|
|
ILA_ATTR_UNSPEC,
|
|
ILA_ATTR_LOCATOR, /* u64 */
|
|
|
|
__ILA_ATTR_MAX,
|
|
};
|
|
|
|
#define ILA_ATTR_MAX (__ILA_ATTR_MAX - 1)
|
|
|
|
#endif /* _LINUX_ILA_H */
|