]> andersk Git - moira.git/blob - server/mr_server.h
d1f3470f53f2284a93d5dacf5aff088db5b3dc77
[moira.git] / server / mr_server.h
1 /*
2  *      $Source$
3  *      $Author$
4  *      $Header$
5  *
6  *      Copyright (C) 1987 by the Massachusetts Institute of Technology
7  *
8  */
9
10 #include <sys/types.h>
11 #include <sys/uio.h>
12 #include <sys/socket.h>
13 #include <netinet/in.h>
14 #include "sms_proto.h"
15 #include <krb.h>
16
17 typedef struct returned_tuples {
18         struct returned_tuples *next;
19         OPERATION op;
20         sms_params *retval;
21 } returned_tuples;
22
23 /*
24  * This should be in the kerberos header file.
25  */
26
27 struct krbname {
28         char name[ANAME_SZ];
29         char inst[INST_SZ];
30         char realm[REALM_SZ];
31 };
32
33 /*
34  * This structure holds all per-client information; one of these is
35  * allocated for each active client.
36  */
37
38 typedef struct _client {
39         OPERATION pending_op;   /* Primary pending operation */
40         CONNECTION con;         /* Connection to the client */
41         int action;             /* what action is pending? */
42         sms_params *args, reply;
43         int id;                 /* Unique id of client */
44         struct sockaddr_in haddr; /* IP address of client */
45         char clname[MAX_K_NAME_SZ];/* Name client authenticated to */
46         struct krbname kname;   /* Parsed version of the above */
47         int users_id;           /* SMS internal ID of authenticated user */
48         int client_id;          /* SMS internal ID of client for modby field */
49         returned_tuples *first, *last;
50         time_t last_time_used;  /* Last time connection used */
51         char entity[9];         /* entity on other end of the connection */
52 } client;
53
54 /*
55  * States
56  */
57
58 #define CL_DEAD 0
59 #define CL_STARTING 1
60
61 /*
62  * Actions.
63  */
64
65 #define CL_ACCEPT 0
66 #define CL_RECEIVE 1
67 #define CL_SEND 2
68
69 extern char *krb_realm;
70
71 /*
72  * Debugging options.
73  */
74
75 extern int log_flags;
76
77 #define LOG_CONNECT             0x0001
78 #define LOG_REQUESTS            0x0002
79 #define LOG_ARGS                0x0004
80 #define LOG_RESP                0x0008
81 #define LOG_RES                 0x0010
82 #define LOG_VALID               0x0020
83
84
85 /* max length of query argument allowed */
86 #define ARGLEN  257
87
88 /* statistics on number of queries by version number */
89 extern int newqueries, oldqueries;
90
91 /* Maximum and minimum values that will ever be chosen for IDs */
92 #define MAX_ID_VALUE    32765
93 #define MIN_ID_VALUE    100
94
95 /* Sleepy states for the server! */
96 #define AWAKE 0
97 #define SLEEPY 1
98 #define ASLEEP 2
99 #define GROGGY 3
100 extern int dormant;
101
102 /* If the motd file exists, the server will go to sleep. */
103 #define SMS_MOTD_FILE "/etc/smsdown"
This page took 0.034874 seconds and 3 git commands to generate.