mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
d94d9fee9f
This cleanup patch puts struct/union/enum opening braces, in first line to ease grep games. struct something { becomes : struct something { Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
32 lines
658 B
C
32 lines
658 B
C
/*
|
|
* if_addrlabel.h - netlink interface for address labels
|
|
*
|
|
* Copyright (C)2007 USAGI/WIDE Project, All Rights Reserved.
|
|
*
|
|
* Authors:
|
|
* YOSHIFUJI Hideaki @ USAGI/WIDE <yoshfuji@linux-ipv6.org>
|
|
*/
|
|
|
|
#ifndef __LINUX_IF_ADDRLABEL_H
|
|
#define __LINUX_IF_ADDRLABEL_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct ifaddrlblmsg {
|
|
__u8 ifal_family; /* Address family */
|
|
__u8 __ifal_reserved; /* Reserved */
|
|
__u8 ifal_prefixlen; /* Prefix length */
|
|
__u8 ifal_flags; /* Flags */
|
|
__u32 ifal_index; /* Link index */
|
|
__u32 ifal_seq; /* sequence number */
|
|
};
|
|
|
|
enum {
|
|
IFAL_ADDRESS = 1,
|
|
IFAL_LABEL = 2,
|
|
__IFAL_MAX
|
|
};
|
|
|
|
#define IFAL_MAX (__IFAL_MAX - 1)
|
|
|
|
#endif
|