diff options
Diffstat (limited to 'net/tipc/node.h')
| -rw-r--r-- | net/tipc/node.h | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/net/tipc/node.h b/net/tipc/node.h index a6803b449a2c..9f6f13f1604f 100644 --- a/net/tipc/node.h +++ b/net/tipc/node.h @@ -55,7 +55,8 @@ enum {  	TIPC_MCAST_RBCTL      = (1 << 7),  	TIPC_GAP_ACK_BLOCK    = (1 << 8),  	TIPC_TUNNEL_ENHANCED  = (1 << 9), -	TIPC_NAGLE            = (1 << 10) +	TIPC_NAGLE            = (1 << 10), +	TIPC_NAMED_BCAST      = (1 << 11)  };  #define TIPC_NODE_CAPABILITIES (TIPC_SYN_BIT           |  \ @@ -68,7 +69,8 @@ enum {  				TIPC_MCAST_RBCTL       |   \  				TIPC_GAP_ACK_BLOCK     |   \  				TIPC_TUNNEL_ENHANCED   |   \ -				TIPC_NAGLE) +				TIPC_NAGLE             |   \ +				TIPC_NAMED_BCAST)  #define INVALID_BEARER_ID -1 @@ -101,7 +103,7 @@ int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dest,  		       u32 selector);  void tipc_node_subscribe(struct net *net, struct list_head *subscr, u32 addr);  void tipc_node_unsubscribe(struct net *net, struct list_head *subscr, u32 addr); -void tipc_node_broadcast(struct net *net, struct sk_buff *skb); +void tipc_node_broadcast(struct net *net, struct sk_buff *skb, int rc_dests);  int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port);  void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port);  int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel, bool connected);  | 
