X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/e82f7154f65062d9ac8b9677862774498b331058..c42fddf370ae87fed818416a21da6f025a033eb3:/identify.h diff --git a/identify.h b/identify.h index c4019b6..0436818 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.4 2004/04/08 01:36:25 mdw Exp $ * * Identifies and logs the client of a connection * - * (c) 1999 Mark Wooding + * (c) 1999 Straylight/Edgeware */ /*----- Licensing notice --------------------------------------------------* @@ -26,14 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: identify.h,v $ - * Revision 1.1 1999/07/01 08:56:23 mdw - * Initial revision - * - */ - #ifndef IDENTIFY_H #define IDENTIFY_H @@ -43,9 +35,14 @@ /*----- Header files ------------------------------------------------------*/ +#include #include #include +#ifndef REFFD_H +# include "reffd.h" +#endif + /*----- Data structures ---------------------------------------------------*/ typedef struct id_req { @@ -53,6 +50,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 +58,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 +65,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 -------------------------------------------------*/