blob: d09e18f3b805635cf131dff3e7d04d9a871ce40c (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* This file is part of the Project Athena Zephyr Notification System.
* It contains source for the ZInitialize function.
*
* Created by: Robert French
*
* $Source$
* $Author$
*
* Copyright (c) 1987 by the Massachusetts Institute of Technology.
* For copying and distribution information, see the file
* "mit-copyright.h".
*/
/* $Header$ */
#ifndef lint
static char rcsid_ZInitialize_c[] = "$Header$";
#endif lint
#include <zephyr/mit-copyright.h>
#include <zephyr/zephyr_internal.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/param.h>
Code_t ZInitialize()
{
struct servent *hmserv;
char addr[4];
#ifdef KERBEROS
int krbval;
#else
char hostname[MAXHOSTNAMELEN+1];
struct hostent *hent;
#endif
init_zeph_err_tbl();
#ifdef KERBEROS
init_krb_err_tbl();
#endif
bzero((char *)&__HM_addr, sizeof(__HM_addr));
__HM_addr.sin_family = AF_INET;
/* Set up local loopback address for HostManager */
addr[0] = 127;
addr[1] = 0;
addr[2] = 0;
addr[3] = 1;
hmserv = (struct servent *)getservbyname("zephyr-hm", "udp");
if (!hmserv)
return (ZERR_HMPORT);
__HM_addr.sin_port = hmserv->s_port;
bcopy(addr, (char *)&__HM_addr.sin_addr, 4);
__HM_set = 0;
#ifdef KERBEROS
if ((krbval = get_krbrlm(__Zephyr_realm, 1)) != KSUCCESS)
return (krbval);
#else
if (gethostname(hostname, MAXHOSTNAMELEN))
return (errno);
if (hent = gethostbyname(hostname))
(void) strcpy(__Zephyr_realm, hent->h_name);
else
(void) strcpy(__Zephyr_realm, hostname);
#endif
/* Get the sender so we can cache it */
(void) ZGetSender();
/* Initialize the input queue */
__Q_Tail = NULL;
__Q_Head = NULL;
return (ZERR_NONE);
}
|