diff -r 55b9dcc2b73a -r aa390e52eda8 src/sock.h --- a/src/sock.h Thu Apr 16 01:20:09 2009 +0300 +++ b/src/sock.h Sun Apr 19 04:04:42 2009 +0300 @@ -91,21 +91,6 @@ sock_stream_connect_cb cb_func, void *cb_arg, struct error_info *err); /** - * Start a non-blocking SSL connect/handshake to the given host/service. The socket will not yet be connected when the - * function returns, but rather, the eventual redyness/failure of the connect/handshake will be indicated later using - * the given \a cb_func. - * - * @param sock_ptr the new sock_stream - * @param host the hostname to connect to - * @param service the TCP service name (i.e. port) to connect to - * @param err returned error info - * - * XXX: doesn't do any certificate verification. - */ -err_t sock_ssl_connect_async (struct sock_stream **sock_ptr, const char *host, const char *service, - sock_stream_connect_cb cb_func, void *cb_arg, struct error_info *err); - -/** * A read-only "socket" based on a FIFO, this provides nonblocking read operations by re-opening the FIFO on EOF. */ err_t fifo_open_read (struct sock_stream **stream_ptr, const char *path, struct error_info *err);