Lines Matching refs:socket
26 curl_socket_t s, /* socket */
27 int what, /* describes the socket */
29 void *socketp); /* private socket pointer */
40 callback to inform the application about updates in the socket (file
57 *s* is the specific socket this function invocation concerns. If the
59 what activity on this socket the application is supposed to
61 for a socket that is already monitored.
63 The socket callback should return 0 on success, and -1 on error. If this
72 socket. It can hold one of these values:
76 Wait for incoming data. For the socket to become readable.
80 Wait for outgoing data. For the socket to become writable.
84 Wait for incoming and outgoing data. For the socket to become readable or
89 The specified socket/file descriptor is no longer used by libcurl for any
111 /* remove the socket from our collection */
114 /* wait for read on this socket */
117 /* wait for write on this socket */
127 /* ... use socket callback and custom pointer */