X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/ff34c6e7869a842b5db5046578c0b8d173501833..d4efbcd93c940ad522fcf8c601ec1829d2e0b10d:/conn.h diff --git a/conn.h b/conn.h index d520a6f..bee4fce 100644 --- a/conn.h +++ b/conn.h @@ -1,13 +1,13 @@ /* -*-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 * * (c) 1999 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of the mLib utilities library. * @@ -15,46 +15,18 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * mLib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with mLib; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * 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