aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/discover.h
diff options
context:
space:
mode:
authorAllan Stephens <Allan.Stephens@windriver.com>2011-04-21 19:05:25 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-05-10 16:04:01 -0400
commit1209966cd5d2ec7f89ad2ed58a6a342aa8ea8712 (patch)
tree9de9cbaf37a33ae5be16f3d57eb10f9b3aaef216 /net/tipc/discover.h
parenttipc: Enhance sending of discovery object link request messages (diff)
downloadlinux-dev-1209966cd5d2ec7f89ad2ed58a6a342aa8ea8712.tar.xz
linux-dev-1209966cd5d2ec7f89ad2ed58a6a342aa8ea8712.zip
tipc: Add monitoring of number of nodes discovered by bearer
Augments TIPC's discovery object to track the number of neighboring nodes having an active link to the associated bearer. This means tipc_disc_update_link_req() becomes either one of: tipc_disc_add_dest() or: tipc_disc_remove_dest() depending on the code flow direction of things. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/discover.h')
-rw-r--r--net/tipc/discover.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tipc/discover.h b/net/tipc/discover.h
index d6e44e3dcdbc..a3af595b86cb 100644
--- a/net/tipc/discover.h
+++ b/net/tipc/discover.h
@@ -42,7 +42,8 @@ struct link_req;
int tipc_disc_create(struct tipc_bearer *b_ptr, struct tipc_media_addr *dest,
u32 dest_domain);
void tipc_disc_delete(struct link_req *req);
-void tipc_disc_update_link_req(struct link_req *req);
+void tipc_disc_add_dest(struct link_req *req);
+void tipc_disc_remove_dest(struct link_req *req);
void tipc_disc_recv_msg(struct sk_buff *buf, struct tipc_bearer *b_ptr);
#endif