projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
79c48cf
)
Make sure broadcast packet reach the local network interface.
author
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 16 Nov 2004 19:02:54 +0000
(19:02 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 16 Nov 2004 19:02:54 +0000
(19:02 +0000)
src/net_packet.c
patch
|
blob
|
history
diff --git
a/src/net_packet.c
b/src/net_packet.c
index
bb50aa2
..
ed49b0b
100644
(file)
--- a/
src/net_packet.c
+++ b/
src/net_packet.c
@@
-457,6
+457,12
@@
void broadcast_packet(const node_t *from, vpn_packet_t *packet)
ifdebug(TRAFFIC) logger(LOG_INFO, _("Broadcasting packet of %d bytes from %s (%s)"),
packet->len, from->name, from->hostname);
ifdebug(TRAFFIC) logger(LOG_INFO, _("Broadcasting packet of %d bytes from %s (%s)"),
packet->len, from->name, from->hostname);
+ if(from != myself) {
+ if(overwrite_mac)
+ memcpy(packet->data, mymac.x, ETH_ALEN);
+ write_packet(packet);
+ }
+
for(node = connection_tree->head; node; node = node->next) {
c = node->data;
for(node = connection_tree->head; node; node = node->next) {
c = node->data;