projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81c7120
)
Don't echo broadcast packets back when Broadcast = direct.
author
Guus Sliepen
<guus@tinc-vpn.org>
Thu, 8 Aug 2013 15:40:15 +0000
(17:40 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Thu, 8 Aug 2013 15:40:15 +0000
(17:40 +0200)
src/net_packet.c
patch
|
blob
|
history
diff --git
a/src/net_packet.c
b/src/net_packet.c
index
6f7a3a1
..
f79c9a7
100644
(file)
--- a/
src/net_packet.c
+++ b/
src/net_packet.c
@@
-961,7
+961,7
@@
void broadcast_packet(const node_t *from, vpn_packet_t *packet) {
break;
for splay_each(node_t, n, node_tree)
- if(n->status.reachable && ((n->via == myself && n->nexthop == n) || n->via == n))
+ if(n->status.reachable &&
n != myself &&
((n->via == myself && n->nexthop == n) || n->via == n))
send_packet(n, packet);
break;