X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/e82f7154f65062d9ac8b9677862774498b331058..e5398e091780133b1049bd87a75fbc299ed51749:/identify.h diff --git a/identify.h b/identify.h index c4019b6..b7fe1bc 100644 --- a/identify.h +++ b/identify.h @@ -1,10 +1,10 @@ /* -*-c-*- * - * $Id: identify.h,v 1.1 1999/07/01 08:56:23 mdw Exp $ + * $Id: identify.h,v 1.2 1999/07/26 23:26:21 mdw Exp $ * * Identifies and logs the client of a connection * - * (c) 1999 Mark Wooding + * (c) 1999 Straylight/Edgeware */ /*----- Licensing notice --------------------------------------------------* @@ -29,8 +29,11 @@ /*----- Revision history --------------------------------------------------* * * $Log: identify.h,v $ - * Revision 1.1 1999/07/01 08:56:23 mdw - * Initial revision + * Revision 1.2 1999/07/26 23:26:21 mdw + * Minor modifications for new design. + * + * Revision 1.1.1.1 1999/07/01 08:56:23 mdw + * Initial revision. * */ @@ -46,6 +49,10 @@ #include #include +#ifndef REFFD_H +# include "reffd.h" +#endif + /*----- Data structures ---------------------------------------------------*/ typedef struct id_req { @@ -53,6 +60,7 @@ typedef struct id_req { struct sockaddr_in rsin; /* Remote address of connection */ const char *desc; /* Description of connection */ const char *act; /* Action taken by server */ + reffd *r; /* Pointer to file descriptor */ } id_req; /*----- Functions provided ------------------------------------------------*/ @@ -60,8 +68,6 @@ typedef struct id_req { /* --- @identify@ --- * * * Arguments: @const id_req *q@ = pointer to request block - * @void (*func)(void *p)@ = function to call when done - * @void *p@ = argument to pass to function * * Returns: --- * @@ -69,8 +75,7 @@ typedef struct id_req { * which will, eventually, report a message to the system log. */ -extern void identify(const id_req */*q*/, - void (*/*func*/)(void */*p*/), void */*p*/); +extern void identify(const id_req */*q*/); /*----- That's all, folks -------------------------------------------------*/