I'm trying to integrate libuv with libcurl.
The uv_poll_start function uses the callback function curl_perform whenever 
(action) events call for polling IN and OUT like so:

switch (action)
{
  case CURL_POLL_INOUT:
    uv_poll_start(&curl_context->poll_handle, events, curl_perform);
    break;
}

Is it possible to use a different callback function or pass additional 
parameters to it?

-- 
You received this message because you are subscribed to the Google Groups 
"libuv" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/libuv.
For more options, visit https://groups.google.com/d/optout.

Reply via email to