Searched refs:hints (Results 1 - 25 of 58) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/server/
H A Dresolve.c144 struct addrinfo hints; local
146 memset(&hints, 0, sizeof(hints));
147 hints.ai_family = PF_INET6;
148 hints.ai_socktype = SOCK_STREAM;
149 hints.ai_flags = AI_CANONNAME;
152 rc = (getaddrinfo)(host, "80", &hints, &ai);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dhostip6.c174 struct addrinfo hints; local
204 memset(&hints, 0, sizeof(hints));
205 hints.ai_family = pf;
206 hints.ai_socktype = conn->socktype;
211 hints.ai_flags = AI_NUMERICHOST;
218 error = Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &res);
H A Dhostip4.c146 struct addrinfo hints; local
150 memset(&hints, 0, sizeof(hints));
151 hints.ai_family = PF_INET;
152 hints.ai_socktype = SOCK_STREAM;
158 (void)Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &ai);
H A Dasyn-thread.c158 const struct addrinfo *hints);
172 struct addrinfo hints; member in struct:thread_sync_data
214 const struct addrinfo *hints)
220 DEBUGASSERT(hints);
221 tsd->hints = *hints;
223 (void) hints;
280 rc = Curl_getaddrinfo_ex(tsd->hostname, service, &tsd->hints, &tsd->res);
354 const struct addrinfo *hints)
370 if(!init_thread_sync_data(&td->tsd, hostname, port, hints))
211 init_thread_sync_data(struct thread_sync_data * tsd, const char * hostname, int port, const struct addrinfo *hints) argument
352 init_resolve_thread(struct connectdata *conn, const char *hostname, int port, const struct addrinfo *hints) argument
628 struct addrinfo hints; local
[all...]
H A Dcurl_addrinfo.h73 const struct addrinfo *hints,
95 const struct addrinfo *hints,
H A Dcurl_addrinfo.c118 const struct addrinfo *hints,
131 error = getaddrinfo(nodename, servname, hints, &aihead);
515 const struct addrinfo *hints,
519 int res=(getaddrinfo)(hostname, service, hints, result);
116 Curl_getaddrinfo_ex(const char *nodename, const char *servname, const struct addrinfo *hints, Curl_addrinfo **result) argument
513 curl_dogetaddrinfo(const char *hostname, const char *service, const struct addrinfo *hints, struct addrinfo **result, int line, const char *source) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/bin/misc/
H A Dfce.c76 struct addrinfo hints, *servinfo, *p; local
85 memset(&hints, 0, sizeof hints);
86 hints.ai_family = AF_UNSPEC; // set to AF_INET to force IPv4
87 hints.ai_socktype = SOCK_DGRAM;
89 if ((rv = getaddrinfo(NULL, FCE_DEFAULT_PORT_STRING, &hints, &servinfo)) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/cnid_dbd/
H A Dusockfd.c87 struct addrinfo hints, *servinfo, *p; local
90 memset(&hints, 0, sizeof hints);
91 hints.ai_family = AF_UNSPEC;
92 hints.ai_socktype = SOCK_STREAM;
94 if ((ret = getaddrinfo(host, port, &hints, &servinfo)) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/misc/
H A Dfce.c76 struct addrinfo hints, *servinfo, *p; local
85 memset(&hints, 0, sizeof hints);
86 hints.ai_family = AF_UNSPEC; // set to AF_INET to force IPv4
87 hints.ai_socktype = SOCK_DGRAM;
89 if ((rv = getaddrinfo(NULL, FCE_DEFAULT_PORT_STRING, &hints, &servinfo)) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/cnid_dbd/
H A Dusockfd.c88 struct addrinfo hints, *servinfo, *p; local
91 memset(&hints, 0, sizeof hints);
92 hints.ai_family = AF_UNSPEC;
93 hints.ai_socktype = SOCK_STREAM;
95 if ((ret = getaddrinfo(host, port, &hints, &servinfo)) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_addrinfo.c29 __os_getaddrinfo(env, nodename, port, servname, hints, res)
33 const ADDRINFO *hints;
39 if ((ret = getaddrinfo(nodename, servname, hints, res)) == 0)
57 COMPQUIET(hints, NULL);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/dsi/
H A Ddsi_tcp.c274 struct addrinfo hints, *servinfo, *p; local
279 memset(&hints, 0, sizeof hints);
281 hints.ai_family = AF_UNSPEC;
283 hints.ai_socktype = SOCK_STREAM;
284 hints.ai_flags = AI_NUMERICSERV;
287 //hints.ai_flags |= AI_PASSIVE;
288 hints.ai_flags = AI_PASSIVE; /* foxconn modified */
290 hints.ai_family = AF_INET6;
293 hints
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/dsi/
H A Ddsi_tcp.c273 struct addrinfo hints, *servinfo, *p; local
278 memset(&hints, 0, sizeof hints);
280 hints.ai_family = AF_UNSPEC;
282 hints.ai_socktype = SOCK_STREAM;
283 hints.ai_flags = AI_NUMERICSERV;
286 //hints.ai_flags |= AI_PASSIVE;
287 hints.ai_flags = AI_PASSIVE; /* foxconn modified */
289 hints.ai_family = AF_INET6;
292 hints
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/
H A Ddiscovery.c89 /* Check if hints bits are unchanged */
90 if(u16ho(node->data.hints) == u16ho(new->data.hints))
260 if ((u16ho(discovery->data.hints) & mask) &&
338 discovery->data.hints[0],
339 discovery->data.hints[1]);
H A Dirlmp.c849 data_hintsp = (__u16 *) irlmp->discovery_cmd.data.hints;
850 put_unaligned(irlmp->hints.word, data_hintsp);
952 * partial/selective discovery based on the hints that it passed to IrLMP.
1061 (client->hint_mask.word & u16ho(expiries[i].hints)
1085 u16ho(irlmp->discovery_rsp.data.hints) = irlmp->hints.word;
1401 void *irlmp_register_service(__u16 hints) argument
1405 IRDA_DEBUG(4, "%s(), hints = %04x\n", __FUNCTION__, hints);
1413 service->hints
[all...]
H A Dirlap_frame.c377 if (discovery->data.hints[0] & HINT_EXTENSION) {
379 info[0] = discovery->data.hints[0];
380 info[1] = discovery->data.hints[1];
383 info[0] = discovery->data.hints[0];
447 discovery->data.hints[0] = discovery_info[0];
450 discovery->data.hints[1] = discovery_info[1];
454 discovery->data.hints[1] = 0;
549 discovery->data.hints[0] = discovery_info[0];
551 discovery->data.hints[1] = discovery_info[1];
555 discovery->data.hints[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/CMake/
H A DCurlTests.c444 struct addrinfo hints, *ai; local
447 memset(&hints, 0, sizeof(hints));
448 hints.ai_family = AF_UNSPEC;
449 hints.ai_socktype = SOCK_STREAM;
453 error = getaddrinfo("127.0.0.1", "8080", &hints, &ai);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Ddhcp6c.c402 struct addrinfo hints, *res; local
429 memset(&hints, 0, sizeof(hints));
430 hints.ai_family = PF_INET6;
431 hints.ai_socktype = SOCK_DGRAM;
432 hints.ai_protocol = IPPROTO_UDP;
433 hints.ai_flags = 0;
434 error = getaddrinfo(linklocal, DH6PORT_DOWNSTREAM, &hints, &res);
471 hints.ai_flags = 0;
472 error = getaddrinfo(linklocal, DH6PORT_UPSTREAM, &hints,
1226 struct addrinfo hints, *res; local
1368 struct addrinfo hints, *res; local
[all...]
H A Ddhcp6s.c278 struct addrinfo hints; local
292 memset(&hints, 0, sizeof(hints));
293 hints.ai_family = PF_INET6;
294 hints.ai_socktype = SOCK_DGRAM;
295 hints.ai_protocol = IPPROTO_UDP;
296 hints.ai_flags = AI_PASSIVE;
297 error = getaddrinfo(NULL, DH6PORT_UPSTREAM, &hints, &res);
335 hints.ai_flags = AI_PASSIVE;
336 error = getaddrinfo(NULL, DH6PORT_DOWNSTREAM, &hints,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/irda/
H A Daf_irda.h59 __u16_host_order hints; /* Hint bits */ member in struct:irda_sock
H A Dirlmp.h82 __u16_host_order hints; /* Hint bits */ member in struct:__anon10558
191 __u16_host_order hints; /* Hint bits */ member in struct:irlmp_cb
201 void *irlmp_register_service(__u16 hints);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dudp.c144 struct addrinfo hints, *res = 0; local
156 memset(&hints, 0, sizeof(hints));
157 hints.ai_socktype = type;
158 hints.ai_family = family;
159 hints.ai_flags = flags;
160 if ((error = getaddrinfo(node, service, &hints, &res))) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dfce_api.c93 struct addrinfo hints, *servinfo, *p; local
98 memset(&hints, 0, sizeof hints);
99 hints.ai_family = AF_UNSPEC;
100 hints.ai_socktype = SOCK_DGRAM;
109 if ((rv = getaddrinfo(udp_entry->addr, udp_entry->port, &hints, &servinfo)) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dfce_api.c94 struct addrinfo hints, *servinfo, *p; local
99 memset(&hints, 0, sizeof hints);
100 hints.ai_family = AF_UNSPEC;
101 hints.ai_socktype = SOCK_DGRAM;
110 if ((rv = getaddrinfo(udp_entry->addr, udp_entry->port, &hints, &servinfo)) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/irnet/
H A Dirnet_ppp.c237 sprintf(event, "Found %08x (%s) behind %08x {hints %02X-%02X}\n",
241 ap->discoveries[ap->disco_index].hints[0],
242 ap->discoveries[ap->disco_index].hints[1]);
339 sprintf(event, "Discovered %08x (%s) behind %08x {hints %02X-%02X}\n",
343 irnet_events.log[ap->event_index].hints.byte[0],
344 irnet_events.log[ap->event_index].hints.byte[1]);
347 sprintf(event, "Expired %08x (%s) behind %08x {hints %02X-%02X}\n",
351 irnet_events.log[ap->event_index].hints.byte[0],
352 irnet_events.log[ap->event_index].hints.byte[1]);

Completed in 139 milliseconds

123