Home | History | Annotate | Download | only in rpcapd

Lines Matching defs:addrinfo

85 static struct addrinfo mainhints;		//!< temporary struct to keep settings needed to open the new socket
207 memset(&mainhints, 0, sizeof(struct addrinfo));
566 struct addrinfo *addrinfo; // keeps the addrinfo chain; required to open a new socket
575 addrinfo = NULL;
616 struct addrinfo *tempaddrinfo;
621 addrinfo = sock_initaddress((address[0]) ? address : NULL,
623 if (addrinfo == NULL)
629 for (tempaddrinfo = addrinfo; tempaddrinfo;
687 freeaddrinfo(addrinfo);
1340 struct addrinfo hints; // temporary struct to keep settings needed to open the new socket
1341 struct addrinfo *addrinfo; // keeps the addrinfo chain; required to open a new socket
1347 memset(&hints, 0, sizeof(struct addrinfo));
1361 addrinfo = sock_initaddress(activepars->address, activepars->port,
1363 if (addrinfo == NULL)
1373 if ((sockctrl = sock_open(activepars->address, addrinfo, SOCKOPEN_CLIENT, 0, errbuf, PCAP_ERRBUF_SIZE)) == INVALID_SOCKET)
1412 freeaddrinfo(addrinfo);