X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/ff34c6e7869a842b5db5046578c0b8d173501833..17119f584e90f494da54aa9e2d1d10227213d96b:/conn.h diff --git a/conn.h b/conn.h index d520a6f..81f381e 100644 --- a/conn.h +++ b/conn.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: conn.h,v 1.6 2001/06/22 19:35:20 mdw Exp $ + * $Id: conn.h,v 1.8 2004/04/08 01:36:11 mdw Exp $ * * Nonblocking connect handling * @@ -27,34 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: conn.h,v $ - * Revision 1.6 2001/06/22 19:35:20 mdw - * Interface change to @conn_init@ -- return error rather than calling the - * function. This reduces the number of different environments the - * callback has to cope with, and the old behaviour is easily simulatable - * with the new, while simulating the new behaviour was awkward and - * painful. - * - * Revision 1.5 1999/12/10 23:42:04 mdw - * Change header file guard names. - * - * Revision 1.4 1999/05/26 21:08:01 mdw - * Remove redundant structure member. - * - * Revision 1.3 1999/05/23 12:12:46 mdw - * Interface change to make the `conn' selector useful for generic stream - * sockets rather than just IPv4 ones. - * - * Revision 1.2 1999/05/15 10:33:32 mdw - * Fix copyright notices. - * - * Revision 1.1 1999/05/14 21:01:14 mdw - * Integrated `select' handling bits from the background resolver project. - * - */ - #ifndef MLIB_CONN_H #define MLIB_CONN_H @@ -83,6 +55,24 @@ typedef struct conn { /*----- Functions provided ------------------------------------------------*/ +/* --- @conn_fd@ --- * + * + * Arguments: @conn *c@ = pointer to connection block + * @sel_state *s@ = pointer to select state to attach to + * @int fd@ = file descriptor of socket + * @void (*func)(int fd, void *p) = handler function + * @void *p@ = argument for the handler function + * + * Returns: --- + * + * Use: Sets up a nonblocking connect job. The socket should have a + * connect pending for it already. + */ + +void conn_fd(conn */*c*/, sel_state */*s*/, int /*fd*/, + void (*/*func*/)(int /*fd*/, void */*p*/), + void */*p*/); + /* --- @conn_init@ --- * * * Arguments: @conn *c@ = pointer to connection block