Searched refs:src_ip (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | udp.c | 630 const ip_addr_t *src_ip; in udp_sendto_if_chksum() local 640 src_ip = ip6_select_source_address(netif, ip_2_ip6(dst_ip)); in udp_sendto_if_chksum() 641 if (src_ip == NULL) { in udp_sendto_if_chksum() 651 src_ip = &pcb->local_ip; in udp_sendto_if_chksum() 663 src_ip = netif_ip_addr4(netif); in udp_sendto_if_chksum() 672 src_ip = &pcb->local_ip; in udp_sendto_if_chksum() 678 return udp_sendto_if_src(pcb, p, dst_ip, dst_port, netif, src_ip); in udp_sendto_if_chksum() 696 u16_t chksum, const ip_addr_t *src_ip) in udp_sendto_if_src_chksum() argument 803 q->tot_len, chklen, src_ip, dst_ip); in udp_sendto_if_src_chksum() 835 q->tot_len, UDP_HLEN, src_ip, dst_ip); in udp_sendto_if_src_chksum() [all …]
|
A D | raw.c | 280 const ip_addr_t *src_ip; in raw_sendto() local 352 src_ip = ip_netif_get_local_ip(netif, dst_ip); in raw_sendto() 354 if (src_ip == NULL) { in raw_sendto() 363 src_ip = &pcb->local_ip; in raw_sendto() 370 …u16_t chksum = ip6_chksum_pseudo(p, pcb->protocol, p->tot_len, ip_2_ip6(src_ip), ip_2_ip6(dst_ip)); in raw_sendto() 377 err = ip_output_if(q, src_ip, dst_ip, pcb->ttl, pcb->tos, pcb->protocol, netif); in raw_sendto()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | udp.h | 130 struct netif *netif, const ip_addr_t *src_ip); 147 u8_t have_chksum, u16_t chksum, const ip_addr_t *src_ip);
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/ |
A D | udp.h | 130 struct netif *netif, const ip_addr_t *src_ip); 147 u8_t have_chksum, u16_t chksum, const ip_addr_t *src_ip);
|
/AliOS-Things-master/components/amp-utility/tftp/ |
A D | haasdevice.py | 203 def tftp_get(self,src_ip,port,src_file,dest = None): argument 207 if self.is_str_empty(src_ip): 222 …tftp_get_cmd = self.CMD_TFTP + ' ' + src_ip + ' ' + port + ' ' + src_file + ' ' + dest + ' ' + … 224 …tftp_get_cmd = self.CMD_TFTP + ' ' + src_ip + ' ' + port + ' ' + src_file + ' ' + dest + ' ' +…
|
/AliOS-Things-master/components/csi/csi2/include/drv/ |
A D | etb.h | 34 …uint8_t src_ip; ///< a specific number represent a location in an source trigger… member
|
/AliOS-Things-master/components/py_engine/modules/network/udp/ |
A D | module_udp.c | 50 char src_ip[INET_ADDRSTRLEN]; member 308 duk_push_string(ctx, p->src_ip); in udp_recv_notify() 351 strcpy(p->src_ip, addr_info.addr); in udp_recv_routine()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/network/udp/ |
A D | module_udp.c | 50 char src_ip[INET_ADDRSTRLEN]; member 305 duk_push_string(ctx, p->src_ip); in udp_recv_notify() 347 strcpy(p->src_ip, addr_info.addr); in udp_recv_routine()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/network/udp/ |
A D | module_udp.c | 51 char src_ip[INET_ADDRSTRLEN]; member 314 host = JS_NewStringLen(ctx, notify->src_ip, INET_ADDRSTRLEN); in udp_recv_notify() 364 memcpy(p->src_ip, addr_info.addr, INET_ADDRSTRLEN); in udp_recv_routine()
|
Completed in 21 milliseconds