| /components/net/lwip/lwip-2.1.2/src/include/lwip/priv/ |
| A D | altcp_priv.h | 84 typedef err_t (*altcp_get_tcp_addrinfo_fn)(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_… 85 typedef ip_addr_t *(*altcp_get_ip_fn)(struct altcp_pcb *conn, int local); 86 typedef u16_t (*altcp_get_port_fn)(struct altcp_pcb *conn, int local); 133 err_t altcp_default_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *por… 134 ip_addr_t *altcp_default_get_ip(struct altcp_pcb *conn, int local); 135 u16_t altcp_default_get_port(struct altcp_pcb *conn, int local);
|
| A D | api_msg.h | 103 u8_t local; member
|
| /components/net/lwip/lwip-2.1.2/src/core/ |
| A D | altcp.c | 478 altcp_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port) in altcp_get_tcp_addrinfo() argument 481 return conn->fns->addrinfo(conn, local, addr, port); in altcp_get_tcp_addrinfo() 487 altcp_get_ip(struct altcp_pcb *conn, int local) in altcp_get_ip() argument 490 return conn->fns->getip(conn, local); in altcp_get_ip() 496 altcp_get_port(struct altcp_pcb *conn, int local) in altcp_get_port() argument 499 return conn->fns->getport(conn, local); in altcp_get_port() 646 return altcp_get_tcp_addrinfo(conn->inner_conn, local, addr, port); in altcp_default_get_tcp_addrinfo() 652 altcp_default_get_ip(struct altcp_pcb *conn, int local) in altcp_default_get_ip() argument 655 return altcp_get_ip(conn->inner_conn, local); in altcp_default_get_ip() 661 altcp_default_get_port(struct altcp_pcb *conn, int local) in altcp_default_get_port() argument [all …]
|
| A D | altcp_tcp.c | 458 altcp_tcp_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port) in altcp_tcp_get_tcp_addrinfo() argument 463 return tcp_tcp_get_tcp_addrinfo(pcb, local, addr, port); in altcp_tcp_get_tcp_addrinfo() 469 altcp_tcp_get_ip(struct altcp_pcb *conn, int local) in altcp_tcp_get_ip() argument 475 if (local) { in altcp_tcp_get_ip() 486 altcp_tcp_get_port(struct altcp_pcb *conn, int local) in altcp_tcp_get_port() argument 492 if (local) { in altcp_tcp_get_port()
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | mdns.txt | 29 MDNS with IPv6 requires LWIP_IPV6_MLD = 1, and that a link-local address is 53 - <hostname>.local type A, AAAA or ANY returns relevant IP addresses 55 returns <hostname>.local 82 - _services._dns-sd._udp.local type PTR returns <service>.<proto>.local 83 - <service>.<proto>.local type PTR returns <name>.<service>.<proto>.local 84 - <name>.<service>.<proto>.local type SRV returns hostname and port of service 85 - <name>.<service>.<proto>.local type TXT builds text strings by calling txt_fn 105 which will publish myweb._http._tcp.local for any hosts looking for web servers, 106 and point them to <hostname>.local:80
|
| A D | rawapi.txt | 143 Binds the pcb to a local IP address and port number. The IP address 145 all local IP addresses. 155 to a local port with the tcp_bind() function. 334 pcb is not active until it has either been bound to a local address 344 Binds the pcb to a local address. The IP-address argument "ipaddr" 345 can be IP_ADDR_ANY to indicate that it should listen to any local IP
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | mdns.txt | 29 MDNS with IPv6 requires LWIP_IPV6_MLD = 1, and that a link-local address is 53 - <hostname>.local type A, AAAA or ANY returns relevant IP addresses 55 returns <hostname>.local 82 - _services._dns-sd._udp.local type PTR returns <service>.<proto>.local 83 - <service>.<proto>.local type PTR returns <name>.<service>.<proto>.local 84 - <name>.<service>.<proto>.local type SRV returns hostname and port of service 85 - <name>.<service>.<proto>.local type TXT builds text strings by calling txt_fn 105 which will publish myweb._http._tcp.local for any hosts looking for web servers, 106 and point them to <hostname>.local:80
|
| /components/libc/compilers/common/ |
| A D | Kconfig | 16 int "Set the default local timezone (hour)" 21 int "Set the default local timezone (minute)" 26 int "Set the default local timezone (second)"
|
| /components/libc/cplusplus/cpp11/gcc/ |
| A D | thread.cpp | 25 thread::invoker_base_ptr local; in execute_native_thread_routine() local 26 local.swap(t->this_ptr); // tranfer the ownership of the invoker into the thread entry in execute_native_thread_routine() 28 local->invoke(); in execute_native_thread_routine()
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | altcp.h | 128 err_t altcp_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port); 129 ip_addr_t *altcp_get_ip(struct altcp_pcb *conn, int local); 130 u16_t altcp_get_port(struct altcp_pcb *conn, int local); 193 #define altcp_get_ip(pcb, local) ((local) ? (&(pcb)->local_ip) : (&(pcb)->remote_ip)) argument
|
| /components/drivers/ofw/ |
| A D | fdt.c | 86 } local, cpu; in rt_fdt_translate_address() local 99 local.addr_cells = fdt_address_cells(fdt, parent); in rt_fdt_translate_address() 100 local.size_cells = fdt_size_cells(fdt, parent); in rt_fdt_translate_address() 104 group_len = local.addr_cells + cpu.addr_cells + local.size_cells; in rt_fdt_translate_address() 108 local.addr = rt_fdt_next_cell(&ranges, local.addr_cells); in rt_fdt_translate_address() 110 local.size = rt_fdt_next_cell(&ranges, local.size_cells); in rt_fdt_translate_address() 112 if (local.addr <= address && local.addr + local.size > address) in rt_fdt_translate_address() 114 ret = address - local.addr + cpu.addr; in rt_fdt_translate_address()
|
| /components/net/lwip/port/ |
| A D | ethernetif.c | 228 struct sockaddr_in local; in lwip_netdev_ping() local 255 local.sin_len = sizeof(local); in lwip_netdev_ping() 256 local.sin_family = AF_INET; in lwip_netdev_ping() 257 local.sin_port = 0; in lwip_netdev_ping() 259 local.sin_addr.s_addr = (netif->ip_addr.addr); in lwip_netdev_ping() 261 local.sin_addr.s_addr = (netif->ip_addr.u_addr.ip4.addr); in lwip_netdev_ping() 264 lwip_bind(s, (struct sockaddr *)&local, sizeof(struct sockaddr_in)); in lwip_netdev_ping()
|
| /components/drivers/rtc/ |
| A D | Kconfig | 24 bool "Using local time for the alarm calculation"
|
| /components/lwp/vdso/user/arch/aarch64/ |
| A D | vdso.lds.S | 58 local: *;
|
| /components/lwp/vdso/user/arch/risc-v/ |
| A D | vdso.lds.S | 58 local: *;
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | ipcp.c | 450 u32_t local, remote; local 467 if ((local = inet_addr(arg)) == (u32_t) -1) { 472 local = *(u32_t *)hp->h_addr; 474 if (bad_ip_adrs(local)) { 475 option_error("bad local IP address %s", ip_ntoa(local)); 478 if (local != 0) 479 wo->ouraddr = local; 1807 u32_t local; 1822 local = *(u32_t *)hp->h_addr; 1823 if (local != 0 && !bad_ip_adrs(local)) [all …]
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | ipcp.c | 450 u32_t local, remote; local 467 if ((local = inet_addr(arg)) == (u32_t) -1) { 472 local = *(u32_t *)hp->h_addr; 474 if (bad_ip_adrs(local)) { 475 option_error("bad local IP address %s", ip_ntoa(local)); 478 if (local != 0) 479 wo->ouraddr = local; 1807 u32_t local; 1822 local = *(u32_t *)hp->h_addr; 1823 if (local != 0 && !bad_ip_adrs(local)) [all …]
|
| /components/net/lwip/lwip-1.4.1/src/include/lwip/ |
| A D | api_msg.h | 85 u8_t local; member
|
| A D | api.h | 222 u16_t *port, u8_t local);
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/priv/ |
| A D | api_msg.h | 102 u8_t local; member
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | snmp_agent.txt | 52 local requirement. 58 to your local lwipopts.h: 115 add the following define to your local lwipopts.h:
|
| A D | rawapi.txt | 113 Binds the pcb to a local IP address and port number. The IP address 115 all local IP addresses. 125 to a local port with the tcp_bind() function. 324 pcb is not active until it has either been bound to a local address 334 Binds the pcb to a local address. The IP-address argument "ipaddr" 335 can be IP_ADDR_ANY to indicate that it should listen to any local IP
|
| /components/net/lwip/lwip-1.4.1/src/api/ |
| A D | api_lib.c | 135 netconn_getaddr(struct netconn *conn, ip_addr_t *addr, u16_t *port, u8_t local) in netconn_getaddr() argument 148 msg.msg.msg.ad.local = local; in netconn_getaddr()
|
| /components/net/lwip/ |
| A D | Kconfig | 10 bool "Use LwIP local version only" 13 If don't select this option, both local version and upstream 14 version can be selected. If select this option, only local version
|
| /components/net/lwip/lwip-2.0.3/src/api/ |
| A D | api_lib.c | 212 netconn_getaddr(struct netconn *conn, ip_addr_t *addr, u16_t *port, u8_t local) in netconn_getaddr() argument 223 API_MSG_VAR_REF(msg).msg.ad.local = local; in netconn_getaddr()
|