Lines Matching refs:hints
98 struct addrinfo hints; in HAL_UDP_create() local
108 memset((char *)&hints, 0x00, sizeof(hints)); in HAL_UDP_create()
109 hints.ai_socktype = SOCK_DGRAM; in HAL_UDP_create()
110 hints.ai_family = AF_INET; in HAL_UDP_create()
111 hints.ai_protocol = IPPROTO_UDP; in HAL_UDP_create()
113 rc = getaddrinfo(host, port_ptr, &hints, &res); in HAL_UDP_create()
227 struct addrinfo hints; in HAL_UDP_resolveAddress() local
231 memset((char *)&hints, 0x00, sizeof(hints)); in HAL_UDP_resolveAddress()
232 hints.ai_socktype = SOCK_DGRAM; in HAL_UDP_resolveAddress()
233 hints.ai_family = AF_INET; in HAL_UDP_resolveAddress()
234 hints.ai_protocol = IPPROTO_UDP; in HAL_UDP_resolveAddress()
236 error = getaddrinfo(p_host, NULL, &hints, &res); in HAL_UDP_resolveAddress()
262 struct addrinfo hints; in HAL_UDP_connect() local
271 memset((char *)&hints, 0x00, sizeof(hints)); in HAL_UDP_connect()
272 hints.ai_socktype = SOCK_DGRAM; in HAL_UDP_connect()
273 hints.ai_family = AF_INET; in HAL_UDP_connect()
274 hints.ai_protocol = IPPROTO_UDP; in HAL_UDP_connect()
276 rc = getaddrinfo(host, port_ptr, &hints, &res); in HAL_UDP_connect()