blob: c6fca25139875145211a0b12b3a68de9f214d878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#ifndef __HM_H__
#define __HM_H__
/* This file is part of the Project Athena Zephyr Notification System.
* It contains the hostmanager header file.
*
* Created by: David C. Jedlinsky
*
* $Source$
* $Author$
* $Header$
*
* Copyright (c) 1987 by the Massachusetts Institute of Technology.
* For copying and distribution information, see the file
* "mit-copyright.h".
*/
#include <zephyr/mit-copyright.h>
#include <zephyr/zephyr.h>
#include <syslog.h>
#include <sys/socket.h>
#include <sys/param.h>
#include <netdb.h>
#ifdef DEBUG
#define DPR(a) fprintf(stderr, a); fflush(stderr)
#define DPR2(a,b) fprintf(stderr, a, b); fflush(stderr)
#define Zperr(e) fprintf(stderr, "Error = %d\n", e)
#else
#define DPR(a)
#define DPR2(a,b)
#define Zperr(e)
#endif
#define ever (;;)
#define SERV_TIMEOUT 20
#define NOTICE_TIMEOUT 25
#define BOOTING 1
#define NOTICES 2
#define MAXRETRIES 2
extern char *malloc();
#ifdef vax
#define MACHINE "vax"
#define ok
#endif vax
#ifdef ibm032
#define MACHINE "rt"
#define ok
#endif ibm032
#ifndef ok
#define MACHINE "unknown"
#endif ok
#endif !__HM_H__
|