X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/5feb52afba684ae49cc96f66fd62fc190c251b92..c2168cf64919e11d6ed71bb3477a75bcefd89cf6:/conn.h diff --git a/conn.h b/conn.h index e70595c..d520a6f 100644 --- a/conn.h +++ b/conn.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: conn.h,v 1.3 1999/05/23 12:12:46 mdw Exp $ + * $Id: conn.h,v 1.6 2001/06/22 19:35:20 mdw Exp $ * * Nonblocking connect handling * @@ -30,6 +30,19 @@ /*----- 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. @@ -42,8 +55,8 @@ * */ -#ifndef CONN_H -#define CONN_H +#ifndef MLIB_CONN_H +#define MLIB_CONN_H #ifdef __cplusplus extern "C" { @@ -54,7 +67,7 @@ #include #include -#ifndef SEL_H +#ifndef MLIB_SEL_H # include "sel.h" #endif @@ -65,7 +78,6 @@ typedef struct conn { sel_file writer; /* Select listener */ void (*func)(int /*fd*/, void */*p*/); /* Handler function */ - int dsz; /* Size of destination address */ void *p; /* Argument for handler function */ } conn; @@ -81,7 +93,7 @@ typedef struct conn { * @void (*func)(int fd, void *p) = handler function * @void *p@ = argument for the handler function * - * Returns: --- + * Returns: Zero on success, nonzero on failure. * * Use: Sets up a nonblocking connect job. The socket should already * be bound if you care about that sort of thing. When the @@ -92,10 +104,10 @@ typedef struct conn { * In either case, the select job is then removed. */ -extern void conn_init(conn */*c*/, sel_state */*s*/, int /*fd*/, - struct sockaddr */*dst*/, int /*dsz*/, - void (*/*func*/)(int /*fd*/, void */*p*/), - void */*p*/); +extern int conn_init(conn */*c*/, sel_state */*s*/, int /*fd*/, + struct sockaddr */*dst*/, int /*dsz*/, + void (*/*func*/)(int /*fd*/, void */*p*/), + void */*p*/); /* --- @conn_kill@ --- * *