| /components/net/lwip/port/ |
| A D | ethernetif.c | 1122 rt_kprintf("ip address: %s\n", ipaddr_ntoa(&(netif->ip_addr))); in list_if() 1123 rt_kprintf("gw address: %s\n", ipaddr_ntoa(&(netif->gw))); in list_if() 1124 rt_kprintf("net mask : %s\n", ipaddr_ntoa(&(netif->netmask))); in list_if() 1160 rt_kprintf("dns server #%d: %s\n", index, ipaddr_ntoa(&(ip_addr))); in list_if() 1202 strcpy(local_ip_str, ipaddr_ntoa(&(pcb->local_ip))); in list_tcps() 1203 strcpy(remote_ip_str, ipaddr_ntoa(&(pcb->remote_ip))); in list_tcps() 1228 strcpy(local_ip_str, ipaddr_ntoa(&(pcb->local_ip))); in list_tcps() 1229 strcpy(remote_ip_str, ipaddr_ntoa(&(pcb->remote_ip))); in list_tcps() 1259 strcpy(local_ip_str, ipaddr_ntoa(&(pcb->local_ip))); in list_udps() 1260 strcpy(remote_ip_str, ipaddr_ntoa(&(pcb->remote_ip))); in list_udps()
|
| /components/net/lwip/lwip-1.4.1/src/include/ipv4/lwip/ |
| A D | ip_addr.h | 232 #define ip_ntoa(ipaddr) ipaddr_ntoa(ipaddr) 237 char *ipaddr_ntoa(const ip_addr_t *addr);
|
| A D | inet.h | 100 #define inet_ntoa(addr) ipaddr_ntoa((ip_addr_t*)&(addr))
|
| /components/net/lwip/lwip-2.1.2/src/core/ |
| A D | ip.c | 79 char *ipaddr_ntoa(const ip_addr_t *addr) in ipaddr_ntoa() function
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | ip_addr.h | 214 #define ipaddr_ntoa(addr) (((addr) == NULL) ? "NULL" : \ macro 280 #define ipaddr_ntoa(ipaddr) ip4addr_ntoa(ipaddr) macro 325 #define ipaddr_ntoa(ipaddr) ip6addr_ntoa(ipaddr) macro
|
| A D | ip4_addr.h | 213 #define ip_ntoa(ipaddr) ipaddr_ntoa(ipaddr)
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | ip_addr.h | 239 char *ipaddr_ntoa(const ip_addr_t *addr); 308 #define ipaddr_ntoa(ipaddr) ip4addr_ntoa(ipaddr) macro 356 #define ipaddr_ntoa(ipaddr) ip6addr_ntoa(ipaddr) macro
|
| A D | ip4_addr.h | 202 #define ip_ntoa(ipaddr) ipaddr_ntoa(ipaddr)
|
| /components/net/lwip/lwip-1.4.1/src/core/ipv4/ |
| A D | ip_addr.c | 261 ipaddr_ntoa(const ip_addr_t *addr) in ipaddr_ntoa() function
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | ppp.txt | 86 printf(" our_ipaddr = %s\n", ipaddr_ntoa(&pppif->ip_addr)); 87 printf(" his_ipaddr = %s\n", ipaddr_ntoa(&pppif->gw)); 88 printf(" netmask = %s\n", ipaddr_ntoa(&pppif->netmask)); 91 printf(" dns1 = %s\n", ipaddr_ntoa(ns)); 93 printf(" dns2 = %s\n", ipaddr_ntoa(ns));
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | ppp.txt | 86 printf(" our_ipaddr = %s\n", ipaddr_ntoa(&pppif->ip_addr)); 87 printf(" his_ipaddr = %s\n", ipaddr_ntoa(&pppif->gw)); 88 printf(" netmask = %s\n", ipaddr_ntoa(&pppif->netmask)); 91 printf(" dns1 = %s\n", ipaddr_ntoa(ns)); 93 printf(" dns2 = %s\n", ipaddr_ntoa(ns));
|
| /components/net/lwip/lwip-2.0.3/src/api/ |
| A D | netdb.c | 132 …LWIP_DEBUGF(DNS_DEBUG, ("hostent.h_addr_list[%i]-> == %s\n", idx, ipaddr_ntoa((ip_addr_t*)s_hosten… in lwip_gethostbyname()
|
| /components/net/lwip/lwip-2.1.2/src/api/ |
| A D | netdb.c | 132 …LWIP_DEBUGF(DNS_DEBUG, ("hostent.h_addr_list[%i]-> == %s\n", idx, ipaddr_ntoa((ip_addr_t *)s_hoste… in lwip_gethostbyname()
|
| /components/net/lwip/lwip-2.0.3/src/apps/sntp/ |
| A D | sntp.c | 521 ipaddr_ntoa(&sntp_server_address))); in sntp_request()
|
| /components/net/lwip/lwip-2.1.2/src/apps/http/ |
| A D | altcp_proxyconnect.c | 141 host = ipaddr_ntoa(&state->outer_addr); in altcp_proxyconnect_send_request()
|
| A D | http_client.c | 609 char *server_addr_str = ipaddr_ntoa(server_addr); in httpc_init_connection_addr()
|
| /components/drivers/wlan/ |
| A D | dev_wlan_lwip.c | 111 rt_memcpy(str, ipaddr_ntoa(&(eth_dev->netif->ip_addr)), IPADDR_STRLEN_MAX); in netif_is_ready()
|
| /components/net/lwip/lwip-2.1.2/src/apps/sntp/ |
| A D | sntp.c | 633 ipaddr_ntoa(&sntp_server_address))); in sntp_request()
|
| /components/net/lwip/lwip-2.1.2/src/core/ipv6/ |
| A D | dhcp6.c | 716 ipaddr_ntoa(addr), port)); in dhcp6_recv()
|
| /components/net/lwip/lwip-2.0.3/src/apps/mqtt/ |
| A D | mqtt.c | 1274 …ACE,("mqtt_client_connect: Connecting to host: %s at port:%"U16_F"\n", ipaddr_ntoa(ip_addr), port)… in mqtt_client_connect()
|
| /components/net/lwip/lwip-2.1.2/src/apps/mqtt/ |
| A D | mqtt.c | 1385 …CE, ("mqtt_client_connect: Connecting to host: %s at port:%"U16_F"\n", ipaddr_ntoa(ip_addr), port)… in mqtt_client_connect()
|
| /components/net/lwip/lwip-2.1.2/src/apps/smtp/ |
| A D | smtp.c | 1034 const char *ipa = ipaddr_ntoa(altcp_get_ip(pcb, 1)); in smtp_prepare_helo()
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 458 * inet.h, ip_addr.c/.h: Added reentrant versions of inet_ntoa/ipaddr_ntoa
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 1414 * inet.h, ip_addr.c/.h: Added reentrant versions of inet_ntoa/ipaddr_ntoa
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 1667 * inet.h, ip_addr.c/.h: Added reentrant versions of inet_ntoa/ipaddr_ntoa
|