hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/net/tipc/name_distr.h
....@@ -46,7 +46,7 @@
4646 * @type: name sequence type
4747 * @lower: name sequence lower bound
4848 * @upper: name sequence upper bound
49
- * @ref: publishing port reference
49
+ * @port: publishing port reference
5050 * @key: publication key
5151 *
5252 * ===> All fields are stored in network byte order. <===
....@@ -67,11 +67,14 @@
6767 __be32 key;
6868 };
6969
70
+void tipc_named_bcast(struct net *net, struct sk_buff *skb);
7071 struct sk_buff *tipc_named_publish(struct net *net, struct publication *publ);
7172 struct sk_buff *tipc_named_withdraw(struct net *net, struct publication *publ);
72
-void tipc_named_node_up(struct net *net, u32 dnode);
73
-void tipc_named_rcv(struct net *net, struct sk_buff_head *msg_queue);
73
+void tipc_named_node_up(struct net *net, u32 dnode, u16 capabilities);
74
+void tipc_named_rcv(struct net *net, struct sk_buff_head *namedq,
75
+ u16 *rcv_nxt, bool *open);
7476 void tipc_named_reinit(struct net *net);
75
-void tipc_publ_notify(struct net *net, struct list_head *nsub_list, u32 addr);
77
+void tipc_publ_notify(struct net *net, struct list_head *nsub_list,
78
+ u32 addr, u16 capabilities);
7679
7780 #endif