• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/

Lines Matching defs:to

14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
104 * resolve API. Called from curl_global_init() to initialize global resolver
120 * Called from curl_global_cleanup() to destroy global resolver environment.
133 * Called from curl_easy_init() -> Curl_open() to initialize resolver
154 * Called from curl_easy_cleanup() -> Curl_close() to cleanup resolver
166 * Called from curl_easy_duphandle() to duplicate resolver URL-state specific
168 * 'from' ares channel and passes the resulting channel to the 'to' pointer.
170 int Curl_resolver_duphandle(void **to, void *from)
173 if(ARES_SUCCESS != ares_dup((ares_channel*)to,(ares_channel)from))
215 * curl_multi_fdset()) wants to get our fd_set setup and we're talking with
250 * 2) wait for the timeout period to check for action on ares' sockets.
251 * 3) tell ares to act on all the sockets marked as "with action"
309 * Curl_resolver_is_resolved() is called repeatedly to check if a previous
310 * name resolve request has completed. It should also make sure to time-out if
311 * the operation seems to take too long.
328 /* temp_ai ownership is moved to the connection, so we need not free-up
346 * waits for a resolve to finish. This function should be avoided since using
347 * this risk getting the multi interface to "hang".
349 * If 'entry' is non-NULL, make it point to the resolved dns entry
367 /* Wait for the name resolve query to complete. */
381 /* use the timeout period ares returned to us above if less than one
382 second is left, otherwise just use 1000ms to make sure the progress
453 /* Connects results to the list */
465 /* Add the new results to the list of old results. */
512 * successful, the 'hostent' is returned and the forth argument will point to
513 * memory we need to free after use. That memory *MUST* be freed with
529 *waitp = 0; /* default to synchronous response */
548 to PF_INET */