]> andersk Git - moira.git/blob - include/mr_proto.h
added compile-time options HESIOD, ZEPHYR, SYSLOG
[moira.git] / include / mr_proto.h
1 /*
2  *      $Source$
3  *      $Author$
4  *      $Header$
5  *
6  *      Copyright (C) 1987 by the Massachusetts Institute of Technology
7  *
8  *      $Log$
9  *      Revision 1.3  1989-10-06 19:09:59  mar
10  *      removed default server location (it's in sms_app.h now)
11  *
12  * Revision 1.2  87/06/28  05:28:18  spook
13  * Added domain name to 'sms'...
14  * 
15  * Revision 1.1  87/06/16  17:48:47  wesommer
16  * Initial revision
17  * 
18  */
19
20 #include <stdio.h>
21 #include <gdb.h>
22 #include <sms.h>
23
24 typedef struct sms_params {
25         u_long sms_size;
26         u_long sms_version_no;
27         union {
28                 u_long procno;  /* for call */
29                 u_long status;  /* for reply */
30         } u;
31 #define sms_procno u.procno
32 #define sms_status u.status
33         int sms_argc;
34         char **sms_argv;
35         int *sms_argl;
36         char *sms_flattened;
37         int sms_state;
38 } sms_params;
39
40 extern int sms_start_recv(), sms_start_send();
This page took 0.27725 seconds and 5 git commands to generate.