Home | History | Annotate | Download | only in net

Lines Matching defs:sl

272   struct string_list *ifaces = 0, *sl;
299 sl = xmalloc(sizeof(*sl)+strlen(name)+1);
300 strcpy(sl->str, name);
301 sl->next = ifaces;
302 ifaces = sl;
304 display_ifconfig(sl->str, toys.optflags & FLAG_a, val);
328 for(sl = ifaces; sl; sl = sl->next)
329 if(!strcmp(sl->str, ifre->ifr_name)) break;
331 if(!sl) display_ifconfig(ifre->ifr_name, toys.optflags & FLAG_a, 0);