- t2ex
- bsd_source/t2ex/network/net/src_bsdlib/libc/net/getaddrinfo.c - 74.1KB - 2,420 lines
2108: if (res->options & RES_DEBUG)
2109: printf(";; res_nquery(%s, %d, %d)\n", name, class, type);
2110: #endif
- More results from getaddrinfo.c
- bsd_source/t2ex/network/net/src_bsdlib/libc/net/nsdispatch.c - 21.5KB - 709 lines
420:
421: printf("%s (%d source%s):", dbt->name, dbt->srclistsize,
422: dbt->srclistsize == 1 ? "" : "s");
- More results from nsdispatch.c
- bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_init.c - 36.4KB - 1,026 lines
590: if (statp->options & RES_DEBUG) {
591: printf(";; res_init()... default dnsrch list:\n");
592: for (pp = statp->dnsrch; *pp; pp++)
- More results from res_init.c
- bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_mkquery.c - 10.9KB - 326 lines
136: if (statp->options & RES_DEBUG)
137: printf(";; res_nmkquery(%s, %s, %s, %s)\n",
138: _res_opcodes[op], dname, p_class(class), p_type(type));
- More results from res_mkquery.c
- bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_query.c - 20.3KB - 567 lines
186: if (statp->options & RES_DEBUG)
187: printf(";; res_query(%s, %d, %d)\n", name, class, type);
188: #endif
- More results from res_query.c
- t2ex_source/driver/tef_em1d/netdrv/src/misc.c - 10.7KB - 328 lines
262: #ifdef DEBUG
263: for (i = 0; i < 32; i++) printf("%04x%c", peek_mii(inf, adr, i),
264: ((i + 1) % 16) ? ' ' : '\n');
- t2ex_source/kernel/sysmain/src/network_sample/net_conf.c - 7.2KB - 233 lines
70:
71: printf("[NET] ");
72: va_start(ap, format);
- More results from net_conf.c
- t2ex_source/kernel/sysmain/src/network_sample/net_show.c - 7.0KB - 223 lines
61: sin = (struct sockaddr_in *)ifa->ifa_addr;
62: printf(" inet: %s\n",
63: inet_ntop(AF_INET, &sin->sin_addr, str, sizeof(str)));
- More results from net_show.c
- t2ex_source/kernel/sysmain/src/network_sample/net_test.c - 12.1KB - 415 lines
81:
82: printf("[http] start\n");
83:
- More results from net_test.c
- t2ex_source/kernel/sysmain/src/network_sample/ping.c - 7.7KB - 229 lines
117: if ( hop == 0 ) {
118: printf("ICMP reply from %s: %d bytes %d ms TTL=%d\n", inet_ntop(AF_INET, &p->ip.ip_src, rbuf, sizeof(rbuf)), re, tim.lo - state->start_time.lo, p->ip.ip_ttl);
119: } else {
- More results from ping.c