Home
last modified time | relevance | path

Searched refs:local (Results 1 – 25 of 56) sorted by relevance

123

/components/net/lwip/lwip-2.1.2/src/include/lwip/priv/
A Daltcp_priv.h84 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 Dapi_msg.h103 u8_t local; member
/components/net/lwip/lwip-2.1.2/src/core/
A Daltcp.c478 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 Daltcp_tcp.c458 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 Dmdns.txt29 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 Drawapi.txt143 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 Dmdns.txt29 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 DKconfig16 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 Dthread.cpp25 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 Daltcp.h128 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 Dfdt.c86 } 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 Dethernetif.c228 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 DKconfig24 bool "Using local time for the alarm calculation"
/components/lwp/vdso/user/arch/aarch64/
A Dvdso.lds.S58 local: *;
/components/lwp/vdso/user/arch/risc-v/
A Dvdso.lds.S58 local: *;
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A Dipcp.c450 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 Dipcp.c450 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 Dapi_msg.h85 u8_t local; member
A Dapi.h222 u16_t *port, u8_t local);
/components/net/lwip/lwip-2.0.3/src/include/lwip/priv/
A Dapi_msg.h102 u8_t local; member
/components/net/lwip/lwip-1.4.1/doc/
A Dsnmp_agent.txt52 local requirement.
58 to your local lwipopts.h:
115 add the following define to your local lwipopts.h:
A Drawapi.txt113 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 Dapi_lib.c135 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 DKconfig10 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 Dapi_lib.c212 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()

Completed in 34 milliseconds

123