Searched refs:inet_ntoa (Results 1 - 25 of 47) sorted by relevance

12

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/
H A Derr.inet_ntoabadaddr.d37 printf("%s\n", inet_ntoa(ip4a));
H A Dtst.inet_ntoa.d52 printf("%s\n", inet_ntoa(ip4a));
53 printf("%s\n", inet_ntoa(ip4b));
54 printf("%s\n", inet_ntoa(ip4c));
55 printf("%s\n", inet_ntoa(ip4d));
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Droute.c37 inet_ntoa ( miniroute->address ) );
38 printf ( "%s", inet_ntoa ( miniroute->netmask ) );
40 printf ( " gw %s", inet_ntoa ( miniroute->gateway ) );
H A Dautoboot.c96 inet_ntoa ( next_server ), filename );
254 printf ( "Next server: %s\n", inet_ntoa ( next_server ) );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/
H A Dinet_ntoa.c40 NetBSD: inet_ntoa.c,v 1.1 2004/05/20 23:13:02 christos Exp
41 inet_ntoa.c 8.1 (Berkeley) 6/4/93
54 __weak_alias(inet_ntoa,_inet_ntoa)
62 inet_ntoa(struct in_addr in) {
65 //strlcpy(ret, "[inet_ntoa error]", sizeof(ret));
66 strncpyX(ret, "[inet_ntoa error]", sizeof(ret));
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Dnfs.d55 inet_ntoa(&((struct sockaddr_in *)
65 inet_ntoa(&((struct sockaddr_in *)
82 inet_ntoa(&((struct sockaddr_in *)
90 inet_ntoa(&((struct sockaddr_in *)
113 inet_ntoa((ipaddr_t *)
H A Dip.d.in225 ip_saddr = inet_ntoa(&I->ipha_src);
226 ip_daddr = inet_ntoa(&I->ipha_dst);
246 inet_ntoa(&((ipha_t *)I)->ipha_src) : *(uint8_t *)I >> 4 == 6 ?
249 inet_ntoa(&((ipha_t *)I)->ipha_dst) : *(uint8_t *)I >> 4 == 6 ?
284 inet_ntoa(&((ipha_t *)I)->ipha_src) :
295 inet_ntoa(&((ipha_t *)I)->ipha_dst) :
338 ipv4_saddr = I != NULL ? inet_ntoa(&I->ipha_src) : "<null>";
339 ipv4_daddr = I != NULL ? inet_ntoa(&I->ipha_dst) : "<null>";
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/arpa/
H A Dinet.h85 char *inet_ntoa(struct in_addr);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_udp.c169 DBG ( " %s\n", inet_ntoa ( pxe_udp.local.sin_addr ) );
306 inet_ntoa ( dest.sin_addr ),
386 DBG ( " wrong IP %s", inet_ntoa ( dest_ip ) );
387 DBG ( " (wanted %s)\n", inet_ntoa ( dest_ip_wanted ) );
398 inet_ntoa ( *( ( struct in_addr * ) &pxenv_udp_read->src_ip ) ));
400 inet_ntoa ( *( ( struct in_addr * ) &pxenv_udp_read->dest_ip ) ),
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dipv4.c53 DBGC ( netdev, "IPv4 add %s", inet_ntoa ( address ) );
54 DBGC ( netdev, "/%s ", inet_ntoa ( netmask ) );
56 DBGC ( netdev, "gw %s ", inet_ntoa ( gateway ) );
92 DBGC ( netdev, "IPv4 del %s", inet_ntoa ( miniroute->address ) );
93 DBGC ( netdev, "/%s ", inet_ntoa ( miniroute->netmask ) );
95 DBGC ( netdev, "gw %s ", inet_ntoa ( miniroute->gateway ) );
335 inet_ntoa ( iphdr->dest ) );
354 DBGC2 ( sin_dest->sin_addr, "IPv4 TX %s->", inet_ntoa ( iphdr->src ) );
356 inet_ntoa ( iphdr->dest ), ntohs ( iphdr->len ),
370 inet_ntoa ( next_ho
586 char * inet_ntoa ( struct in_addr in ) { function
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/
H A Ddhcp.c367 dhcp_msgtype_name ( msgtype ), inet_ntoa ( peer->sin_addr ),
370 DBGC ( dhcp, " (%s)", inet_ntoa ( server_id ) );
375 DBGC ( dhcp, " for %s", inet_ntoa ( ip ) );
482 dhcp, inet_ntoa ( dhcp->server ), BOOTPS_PORT );
483 DBGC ( dhcp, " for %s\n", inet_ntoa ( dhcp->offer ) );
523 dhcp_msgtype_name ( msgtype ), inet_ntoa ( peer->sin_addr ),
526 DBGC ( dhcp, " (%s)", inet_ntoa ( server_id ) );
531 DBGC ( dhcp, " for %s", inet_ntoa ( ip ) );
619 inet_ntoa ( dhcp->proxy_server ) );
651 dhcp_msgtype_name ( msgtype ), inet_ntoa ( pee
[all...]
H A Dsyslog.c203 inet_ntoa ( sin_logserver->sin_addr ) );
H A Ddns.c389 dns, inet_ntoa ( rr_info->a.in_addr ) );
627 inet_ntoa ( sin_nameserver->sin_addr ) );
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dipcp.c184 * Non-standard inet_ntoa left here for compat with original ppp
192 return inet_ntoa(ia);
195 #define inet_ntoa _inet_ntoa macro
612 inet_ntoa(ciaddr1)));
617 inet_ntoa(ciaddr2)));
652 IPCPDEBUG((LOG_INFO, "primary DNS address %s\n", inet_ntoa(cidnsaddr)));
657 IPCPDEBUG((LOG_INFO, "secondary DNS address %s\n", inet_ntoa(cidnsaddr)));
917 IPCPDEBUG((LOG_INFO, "his addr %s\n", inet_ntoa(ciaddr1)));
941 IPCPDEBUG((LOG_INFO, "our addr %s\n", inet_ntoa(ciaddr2)));
989 IPCPDEBUG((LOG_INFO, "ipcp_reqci: Nak ADDR %s\n", inet_ntoa(ciaddr
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/include/ipv4/lwip/
H A Dinet.h52 char *inet_ntoa(struct in_addr addr); /* returns ptr to static buffer; not reentrant! */
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Din.h94 extern char * inet_ntoa ( struct in_addr in );
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dipcp.c616 inet_ntoa(ciaddr1)));
621 inet_ntoa(ciaddr2)));
658 IPCPDEBUG(LOG_INFO, ("primary DNS address %s\n", inet_ntoa(cidnsaddr)));
663 IPCPDEBUG(LOG_INFO, ("secondary DNS address %s\n", inet_ntoa(cidnsaddr)));
938 IPCPDEBUG(LOG_INFO, ("his addr %s\n", inet_ntoa(ciaddr1)));
962 IPCPDEBUG(LOG_INFO, ("our addr %s\n", inet_ntoa(ciaddr2)));
1010 IPCPDEBUG(LOG_INFO, ("ipcp_reqci: Nak ADDR %s\n", inet_ntoa(ciaddr1)));
1015 IPCPDEBUG(LOG_INFO, ("ipcp_reqci: Reject ADDR %s\n", inet_ntoa(ciaddr1)));
1023 IPCPDEBUG(LOG_INFO, ("ipcp_reqci: ADDR %s\n", inet_ntoa(ciaddr1)));
1041 d+1, inet_ntoa(t
[all...]
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_nbt.c466 printf("%s:%d-->", inet_ntoa(ndh->source_ip), ntohs(ndh->source_port));
486 printf("%s:%d\n", inet_ntoa(ndh->source_ip), ntohs(ndh->source_port));
583 printf("NB rec[%s", inet_ntoa(nbtarg->oldaddr));
584 printf("->%s, %dbytes] ", inet_ntoa(nbtarg->newaddr), bcount);
592 printf("<%s>", inet_ntoa(nb->addr));
651 printf("Arec [%s", inet_ntoa(nbtarg->oldaddr));
652 printf("->%s]", inet_ntoa(nbtarg->newaddr));
658 printf("..%s", inet_ntoa(a->addr));
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/
H A Dtst.subr.d98 STRFUNC(inet_ntoa((ipaddr_t *)alloca(sizeof (ipaddr_t))))
/vbox/src/VBox/Devices/Network/lwip-new/src/include/ipv4/lwip/
H A Dinet.h114 #define inet_ntoa(addr) ipaddr_ntoa((ip_addr_t*)&(addr)) macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgethostbynis.c133 return _gethostbynis(inet_ntoa(*(struct in_addr *)addr),"hosts.byaddr", af);
/vbox/src/VBox/Devices/Network/slirp/
H A Ddebug.c256 buff, so->s, inet_ntoa(so->so_laddr), RT_N2H_U16(so->so_lport));
258 inet_ntoa(so->so_faddr), RT_N2H_U16(so->so_fport),
270 buff, so->s, inet_ntoa(so->so_laddr), RT_N2H_U16(so->so_lport));
272 inet_ntoa(so->so_faddr), RT_N2H_U16(so->so_fport),
/vbox/src/VBox/Main/include/
H A Dnetif.h166 char *addr = inet_ntoa(tmp);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmacsocket.h135 extern char *inet_ntoa(struct in_addr in);
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceVMInfo.cpp994 RTStrPrintf(szIp, sizeof(szIp), "%s", inet_ntoa(pAddress->sin_addr));
1000 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, szPropPath, "%s", inet_ntoa(pAddress->sin_addr));
1004 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, szPropPath, "%s", inet_ntoa(pAddress->sin_addr));
1233 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, szPropPath, "%s", inet_ntoa(pAddress->sin_addr));
1245 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, szPropPath, "%s", inet_ntoa(pAddress->sin_addr));
1261 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, szPropPath, "%s", inet_ntoa(pAddress->sin_addr));

Completed in 419 milliseconds

12