
Signed-off-by: HongweiBi <hwbi2008@gmail.com> Signed-off-by: Thomas Haller <thaller@redhat.com>
60 lines
1.7 KiB
C
60 lines
1.7 KiB
C
/*
|
|
* netlink/route/link/bridge.h Bridge
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation version 2.1
|
|
* of the License.
|
|
*
|
|
* Copyright (c) 2013 Thomas Graf <tgraf@suug.ch>
|
|
*/
|
|
|
|
#ifndef NETLINK_LINK_BRIDGE_H_
|
|
#define NETLINK_LINK_BRIDGE_H_
|
|
|
|
#include <netlink/netlink.h>
|
|
#include <netlink/route/link.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Bridge flags
|
|
* @ingroup bridge
|
|
*/
|
|
enum rtnl_link_bridge_flags {
|
|
RTNL_BRIDGE_HAIRPIN_MODE = 0x0001,
|
|
RTNL_BRIDGE_BPDU_GUARD = 0x0002,
|
|
RTNL_BRIDGE_ROOT_BLOCK = 0x0004,
|
|
RTNL_BRIDGE_FAST_LEAVE = 0x0008,
|
|
};
|
|
|
|
extern struct rtnl_link *rtnl_link_bridge_alloc(void);
|
|
|
|
extern int rtnl_link_is_bridge(struct rtnl_link *);
|
|
extern int rtnl_link_bridge_has_ext_info(struct rtnl_link *);
|
|
|
|
extern int rtnl_link_bridge_set_port_state(struct rtnl_link *, uint8_t );
|
|
extern int rtnl_link_bridge_get_port_state(struct rtnl_link *);
|
|
|
|
extern int rtnl_link_bridge_set_priority(struct rtnl_link *, uint16_t);
|
|
extern int rtnl_link_bridge_get_priority(struct rtnl_link *);
|
|
|
|
extern int rtnl_link_bridge_set_cost(struct rtnl_link *, uint32_t);
|
|
extern int rtnl_link_bridge_get_cost(struct rtnl_link *, uint32_t *);
|
|
|
|
extern int rtnl_link_bridge_unset_flags(struct rtnl_link *, unsigned int);
|
|
extern int rtnl_link_bridge_set_flags(struct rtnl_link *, unsigned int);
|
|
extern int rtnl_link_bridge_get_flags(struct rtnl_link *);
|
|
|
|
extern char * rtnl_link_bridge_flags2str(int, char *, size_t);
|
|
extern int rtnl_link_bridge_str2flags(const char *);
|
|
|
|
extern int rtnl_link_bridge_add(struct nl_sock *sk, const char *name);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|