Searched refs:ai_new (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Devutil.c1314 struct evutil_addrinfo *ai_new; local
1319 ai_new = mm_malloc(sizeof(*ai_new));
1320 if (!ai_new)
1322 memcpy(ai_new, ai, sizeof(*ai_new));
1325 ai_new->ai_socktype = SOCK_DGRAM;
1326 ai_new->ai_protocol = IPPROTO_UDP;
1328 ai_new->ai_next = ai->ai_next;
1329 ai->ai_next = ai_new;
[all...]
H A Devdns.c4589 struct evutil_addrinfo *ai_new; local
4594 ai_new = evutil_new_addrinfo_(&e->addr.sa, e->addrlen, hints);
4595 if (!ai_new) {
4599 sockaddr_setport(ai_new->ai_addr, port);
4600 ai = evutil_addrinfo_append_(ai, ai_new);

Completed in 103 milliseconds