Minor modifications for new design.
[fwd] / identify.h
index c4019b6..b7fe1bc 100644 (file)
@@ -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 --------------------------------------------------* 
 /*----- 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.
  *
  */
 
 #include <sys/socket.h>
 #include <netinet/in.h>
 
+#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 -------------------------------------------------*/