HomeSort by: relevance | last modified time | path
    Searched defs:ifconf (Results 1 - 5 of 5) sorted by relevancy

  /src/tests/net/if/
Makefile 9 .for name in ifconf ifconfig
14 PROGS= ifconf
15 MAN.ifconf= # empty
16 BINDIR.ifconf= ${TESTSDIR}
  /src/usr.sbin/bootp/common/
getif.c 42 static struct ifconf ifconf; /* points to ifreq */ variable in typeref:struct:ifconf
63 if (ifconf.ifc_len == 0) {
75 ifconf.ifc_len = ioc.ic_len;
76 ifconf.ifc_req = ifreq;
78 ifconf.ifc_len = sizeof(ifreq);
79 ifconf.ifc_req = ifreq;
80 m = ioctl(s, SIOCGIFCONF, (caddr_t) & ifconf);
82 if ((m < 0) || (ifconf.ifc_len <= 0)) {
90 len = ifconf.ifc_len
    [all...]
  /src/usr.sbin/sysinst/
net.c 1118 FILE *ifconf = NULL; local in function:mnt_net_config
1144 ifconf = target_fopen(ifconfig_fn, "w");
1145 if (ifconf != NULL) {
1148 scripting_fprintf(ifconf, "up\n");
1150 scripting_fprintf(ifconf, "media %s\n", net_media);
1158 if (ifconf != NULL) {
1162 scripting_fprintf(ifconf,
1166 scripting_fprintf(ifconf, "%s netmask %s\n",
1201 if (ifconf)
1202 fclose(ifconf);
    [all...]
  /src/sys/net/
if.c 229 static int ifconf(u_long, void *);
3469 return ifconf(cmd, data);
3652 ifconf(u_long cmd, void *data) function in typeref:typename:int
3654 struct ifconf *ifc = (struct ifconf *)data;
if.h 942 struct ifconf { struct

Completed in 49 milliseconds