diff options
author | Richard Alpe <richard.alpe@ericsson.com> | 2016-08-26 10:52:53 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-27 06:38:41 +0200 |
commit | ef20cd4dd1633987bcf46ac34ace2c8af212361f (patch) | |
tree | 016eff3257434db4f8ec7f8270d1dc981836c9a8 /net/tipc/bearer.h | |
parent | tipc: refactor multicast ip check (diff) | |
download | linux-ef20cd4dd1633987bcf46ac34ace2c8af212361f.tar.xz linux-ef20cd4dd1633987bcf46ac34ace2c8af212361f.zip |
tipc: introduce UDP replicast
This patch introduces UDP replicast. A concept where we emulate
multicast by sending multiple unicast messages to configured peers.
The purpose of replicast is mainly to be able to use TIPC in cloud
environments where IP multicast is disabled. Using replicas to unicast
multicast messages is costly as we have to copy each skb and send the
copies individually.
Signed-off-by: Richard Alpe <richard.alpe@ericsson.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/bearer.h')
-rw-r--r-- | net/tipc/bearer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/bearer.h b/net/tipc/bearer.h index 83a9abbfe32c..78892e2f53e3 100644 --- a/net/tipc/bearer.h +++ b/net/tipc/bearer.h @@ -181,6 +181,7 @@ int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info); int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb); int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info); int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info); +int tipc_nl_bearer_add(struct sk_buff *skb, struct genl_info *info); int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb); int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info); |