From 805256ff657ca568f3e62d67f131798d603e0a1c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 6 Aug 2011 21:47:57 +0900 Subject: [PATCH] Use the last used interface address for the socket address. This allows the correct address to be put in the server info packet allowing nq to work on multi-homed hosts. More testing needs to be done to ensure nothing is broken, or better yet, a rewrite of the networking code to properly associate the information with the packets. --- libs/net/nm/net_udp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libs/net/nm/net_udp.c b/libs/net/nm/net_udp.c index 2172a5a52..1b9f5a7b8 100644 --- a/libs/net/nm/net_udp.c +++ b/libs/net/nm/net_udp.c @@ -514,8 +514,11 @@ UDP_GetSocketAddr (int socket, struct qsockaddr *addr) getsockname (socket, (struct sockaddr *) addr, &addrlen); a = ((struct sockaddr_in *) addr)->sin_addr.s_addr; - if (a == 0 || a == inet_addr ("127.0.0.1")) - ((struct sockaddr_in *) addr)->sin_addr.s_addr = myAddr; + if (a == 0 || a == inet_addr ("127.0.0.1")) { + ((struct sockaddr_in *) addr)->sin_addr.s_addr = *default_iface; + if (last_iface) + ((struct sockaddr_in *) addr)->sin_addr.s_addr = *last_iface; + } return 0; }