diff options
Diffstat (limited to 'net/tipc/node.h')
| -rw-r--r-- | net/tipc/node.h | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/net/tipc/node.h b/net/tipc/node.h index acd58d23a70e..f24b83500df1 100644 --- a/net/tipc/node.h +++ b/net/tipc/node.h @@ -49,22 +49,25 @@ enum {  	TIPC_BCAST_STATE_NACK = (1 << 2),  	TIPC_BLOCK_FLOWCTL    = (1 << 3),  	TIPC_BCAST_RCAST      = (1 << 4), -	TIPC_MCAST_GROUPS     = (1 << 5) +	TIPC_NODE_ID128       = (1 << 5)  };  #define TIPC_NODE_CAPABILITIES (TIPC_BCAST_SYNCH | \  				TIPC_BCAST_STATE_NACK | \  				TIPC_BCAST_RCAST | \ -				TIPC_BLOCK_FLOWCTL) +				TIPC_BLOCK_FLOWCTL | \ +				TIPC_NODE_ID128)  #define INVALID_BEARER_ID -1  void tipc_node_stop(struct net *net); -void tipc_node_check_dest(struct net *net, u32 onode, +u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr); +void tipc_node_check_dest(struct net *net, u32 onode, u8 *peer_id128,  			  struct tipc_bearer *bearer,  			  u16 capabilities, u32 signature,  			  struct tipc_media_addr *maddr,  			  bool *respond, bool *dupl_addr);  void tipc_node_delete_links(struct net *net, int bearer_id); +void tipc_node_apply_tolerance(struct net *net, struct tipc_bearer *b);  int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 node,  			   char *linkname, size_t len);  int tipc_node_xmit(struct net *net, struct sk_buff_head *list, u32 dnode, | 
