aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc/node.h')
-rw-r--r--net/tipc/node.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/net/tipc/node.h b/net/tipc/node.h
index 846c8f240872..48b3298a248d 100644
--- a/net/tipc/node.h
+++ b/net/tipc/node.h
@@ -49,14 +49,16 @@ enum {
49 TIPC_BCAST_STATE_NACK = (1 << 2), 49 TIPC_BCAST_STATE_NACK = (1 << 2),
50 TIPC_BLOCK_FLOWCTL = (1 << 3), 50 TIPC_BLOCK_FLOWCTL = (1 << 3),
51 TIPC_BCAST_RCAST = (1 << 4), 51 TIPC_BCAST_RCAST = (1 << 4),
52 TIPC_NODE_ID128 = (1 << 5) 52 TIPC_NODE_ID128 = (1 << 5),
53 TIPC_LINK_PROTO_SEQNO = (1 << 6)
53}; 54};
54 55
55#define TIPC_NODE_CAPABILITIES (TIPC_BCAST_SYNCH | \ 56#define TIPC_NODE_CAPABILITIES (TIPC_BCAST_SYNCH | \
56 TIPC_BCAST_STATE_NACK | \ 57 TIPC_BCAST_STATE_NACK | \
57 TIPC_BCAST_RCAST | \ 58 TIPC_BCAST_RCAST | \
58 TIPC_BLOCK_FLOWCTL | \ 59 TIPC_BLOCK_FLOWCTL | \
59 TIPC_NODE_ID128) 60 TIPC_NODE_ID128 | \
61 TIPC_LINK_PROTO_SEQNO)
60#define INVALID_BEARER_ID -1 62#define INVALID_BEARER_ID -1
61 63
62void tipc_node_stop(struct net *net); 64void tipc_node_stop(struct net *net);