Searched refs:addr_from (Results 1 – 1 of 1) sorted by relevance
/third_party/lwip/src/core/distributed_net/ |
D | distributed_net_core.c | 215 aligned_sockaddr addr_from = {0}; in distributed_net_recvfrom() local 216 socklen_t addr_from_len = sizeof(addr_from); in distributed_net_recvfrom() 218 …lwip_recvfrom_internal(sock, new_buf, new_buf_len, flags, (struct sockaddr *)&addr_from, &addr_fro… in distributed_net_recvfrom() 224 if (!IS_LOCAL_UDP_SERVER_ADDR((struct sockaddr_in *)(&addr_from))) { in distributed_net_recvfrom() 230 (void)memcpy_s(from, *from_len, &addr_from, *from_len); in distributed_net_recvfrom() 245 (void)memcpy_s(from, *from_len, &addr_from, MIN(addr_from_len, *from_len)); in distributed_net_recvfrom()
|