aboutsummaryrefslogtreecommitdiffstats
path: root/package/ead/src/ead.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-01-06 14:08:07 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-01-06 14:08:07 +0000
commitda951bad66813a97971be00847b052e750f6b6a5 (patch)
tree2d76859136dfbcaa4ef2303e5b75fc55e8258446 /package/ead/src/ead.c
parent8c634001bbb558ad877da765205a825ff8015900 (diff)
downloadupstream-da951bad66813a97971be00847b052e750f6b6a5.tar.gz
upstream-da951bad66813a97971be00847b052e750f6b6a5.tar.bz2
upstream-da951bad66813a97971be00847b052e750f6b6a5.zip
ead: allow the client to override the source ip of the server, so that it can work with route filtering properly
SVN-Revision: 13883
Diffstat (limited to 'package/ead/src/ead.c')
-rw-r--r--package/ead/src/ead.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ead/src/ead.c b/package/ead/src/ead.c
index b6a9310f0f..91f6fbaf70 100644
--- a/package/ead/src/ead.c
+++ b/package/ead/src/ead.c
@@ -250,7 +250,7 @@ ead_send_packet_clone(struct ead_packet *pkt)
len = sizeof(struct ead_packet) - sizeof(struct ether_header) + ntohl(pktbuf->msg.len);
pktbuf->len[0] = len >> 8;
pktbuf->len[1] = len & 0xff;
- memcpy(pktbuf->srcipaddr, pkt->destipaddr, 4);
+ memcpy(pktbuf->srcipaddr, &pkt->msg.ip, 4);
memcpy(pktbuf->destipaddr, pkt->srcipaddr, 4);
/* ip checksum */