]> andersk Git - moira.git/commitdiff
made clname & entity buffers instead of pointers;
authormar <mar>
Mon, 28 Aug 1989 17:28:27 +0000 (17:28 +0000)
committermar <mar>
Mon, 28 Aug 1989 17:28:27 +0000 (17:28 +0000)
added client_id separate from users_id;
added lists for caching access control

server/mr_server.h

index 3ded5827f855ca214573e262643c2b6031e8ddf2..23d2c49a00392ff48a1b6b5f157a45ad068586dd 100644 (file)
@@ -34,6 +34,8 @@ struct krbname {
  * This structure holds all per-client information; one of these is
  * allocated for each active client.
  */
+
+#define NLISTS 100
    
 typedef struct _client {
        OPERATION pending_op;   /* Primary pending operation */
@@ -42,12 +44,14 @@ typedef struct _client {
        sms_params *args, reply;
        int id;                 /* Unique id of client */
        struct sockaddr_in haddr; /* IP address of client */
-       char *clname;           /* Name client authenticated to */
-       int users_id;           /* SMS internal ID of authenticated user */
+       char clname[MAX_K_NAME_SZ];/* Name client authenticated to */
        struct krbname kname;   /* Parsed version of the above */
+       int users_id;           /* SMS internal ID of authenticated user */
+       int client_id;          /* SMS internal ID of client for modby field */
        returned_tuples *first, *last;
        time_t last_time_used;  /* Last time connection used */
-       char *entity;           /* entity on other end of the connection */
+       char entity[9];         /* entity on other end of the connection */
+       int lists[NLISTS];      /* lists this person is a member of */
 } client;
 
 /*
This page took 0.060678 seconds and 5 git commands to generate.