Merge branch 'x86-asm-generic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / include / linux / if_addrlabel.h
CommitLineData
2a8cc6c8
YH
1/*
2 * if_addrlabel.h - netlink interface for address labels
3 *
4 * Copyright (C)2007 USAGI/WIDE Project, All Rights Reserved.
5 *
6 * Authors:
7 * YOSHIFUJI Hideaki @ USAGI/WIDE <yoshfuji@linux-ipv6.org>
8 */
9
10#ifndef __LINUX_IF_ADDRLABEL_H
11#define __LINUX_IF_ADDRLABEL_H
12
1759cb99
JSR
13#include <linux/types.h>
14
2a8cc6c8
YH
15struct ifaddrlblmsg
16{
17 __u8 ifal_family; /* Address family */
18 __u8 __ifal_reserved; /* Reserved */
19 __u8 ifal_prefixlen; /* Prefix length */
20 __u8 ifal_flags; /* Flags */
21 __u32 ifal_index; /* Link index */
22 __u32 ifal_seq; /* sequence number */
23};
24
25enum
26{
27 IFAL_ADDRESS = 1,
28 IFAL_LABEL = 2,
29 __IFAL_MAX
30};
31
32#define IFAL_MAX (__IFAL_MAX - 1)
33
34#endif
This page took 0.257225 seconds and 5 git commands to generate.