Home | History | Annotate | Download | only in libevent

Lines Matching full:ai_new

1330 	struct evutil_addrinfo *ai_new;
1335 ai_new = mm_malloc(sizeof(*ai_new));
1336 if (!ai_new)
1338 memcpy(ai_new, ai, sizeof(*ai_new));
1341 ai_new->ai_socktype = SOCK_DGRAM;
1342 ai_new->ai_protocol = IPPROTO_UDP;
1344 ai_new->ai_next = ai->ai_next;
1345 ai->ai_next = ai_new;