Caching loopback interface.

This commit is contained in:
Ondrej Filip 2004-06-01 10:55:10 +00:00
parent a8bb459a3f
commit 77772dbc65

View file

@ -107,6 +107,7 @@ krt_sock_send(int cmd, rte *e, char *name)
struct ks_msg msg; struct ks_msg msg;
char *body = (char *)msg.buf; char *body = (char *)msg.buf;
sockaddr gate, mask, dst; sockaddr gate, mask, dst;
static struct iface *loop = NULL;
DBG("krt-sock: send %I/%d via %I", net->n.prefix, net->n.pxlen, a->gw); DBG("krt-sock: send %I/%d via %I", net->n.prefix, net->n.pxlen, a->gw);
@ -145,16 +146,20 @@ krt_sock_send(int cmd, rte *e, char *name)
*/ */
if(!i) if(!i)
{ {
i = HEAD(iface_list); if(!loop)
WALK_LIST(j, iface_list)
{ {
if (j->flags & IF_LOOPBACK) i = HEAD(iface_list);
WALK_LIST(j, iface_list)
{ {
i = j; if (j->flags & IF_LOOPBACK)
break; {
i = j;
break;
}
} }
} }
i = loop;
} }
switch (a->dest) switch (a->dest)