Update the hash table when sppp mucks directly with the interface address.

This commit is contained in:
Jonathan Lemon 2001-10-01 18:14:49 +00:00
parent 22c819a73a
commit 25871c13b8

View File

@ -4545,6 +4545,7 @@ sppp_set_ip_addr(struct sppp *sp, u_long src)
STDDCL;
struct ifaddr *ifa;
struct sockaddr_in *si;
struct in_ifaddr *ia;
/*
* Pick the first AF_INET address from the list,
@ -4595,6 +4596,9 @@ sppp_set_ip_addr(struct sppp *sp, u_long src)
/* set new address */
si->sin_addr.s_addr = htonl(src);
ia = ifatoia(ifa);
LIST_REMOVE(ia, ia_hash);
LIST_INSERT_HEAD(INADDR_HASH(si->sin_addr.s_addr), ia, ia_hash);
/* add new route */
error = rtinit(ifa, (int)RTM_ADD, RTF_HOST);