]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
70fffde40c5c70cb504bc6656b548b6e12fa39d4
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.7 2001-12-03 05:03:38 jmarcus Exp $
3  *
4  * Copyright (c) 1990,1993 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifndef AFPD_GLOBALS_H
9 #define AFPD_GLOBALS_H 1
10
11 #include <sys/param.h>
12 #include <sys/cdefs.h>
13
14 #ifdef ADMIN_GRP
15 #include <grp.h>
16 #include <sys/types.h>
17 #endif /* ADMIN_GRP */
18
19 #ifdef HAVE_NETDB_H
20 #include <netdb.h>  /* this isn't header-protected under ultrix */
21 #endif /* HAVE_NETDB_H */
22
23 #include <netatalk/at.h>
24 #include <atalk/afp.h>
25 #include <atalk/compat.h>
26
27 /* test for inline */
28 #ifndef __inline__
29 #define __inline__
30 #endif
31
32 #define MACFILELEN 31
33
34 #define OPTION_DEBUG         (1 << 0)
35 #define OPTION_USERVOLFIRST  (1 << 1)
36 #define OPTION_NOUSERVOL     (1 << 2)
37 #define OPTION_PROXY         (1 << 3)
38 #define OPTION_CUSTOMICON    (1 << 4)
39
40 /* a couple of these options could get stuck in unions to save
41  * space. */
42 struct afp_options {
43     int connections, port, transports, tickleval, flags;
44     unsigned char passwdbits, passwdminlen, loginmaxfail;
45     u_int32_t server_quantum;
46     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *configfile;
47     struct at_addr ddpaddr;
48     char *uampath, *nlspath, *fqdn;
49     char *pidfile, *defaultvol, *systemvol;
50     char *guest, *loginmesg, *keyfile, *passwdfile;
51     char *uamlist;
52     char *authprintdir;
53     mode_t umask;
54 #ifdef ADMIN_GRP
55     gid_t admingid;
56 #endif /* ADMIN_GRP */
57 };
58
59 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
60 typedef struct AFPObj {
61     int proto;
62     unsigned long servernum;
63     void *handle, *config;
64     struct afp_options options;
65     char *Obj, *Type, *Zone;
66     char username[MACFILELEN + 1];
67     void (*logout)(void), (*exit)(int);
68     int (*reply)(void *, int);
69     int (*attention)(void *, AFPUserBytes);
70     /* to prevent confusion, only use these in afp_* calls */
71     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
72     void *uam_cookie; /* cookie for uams */
73 } AFPObj;
74
75 extern int              afp_version;
76 extern unsigned char    nologin;
77 extern struct vol       *volumes;
78 extern struct dir       *curdir;
79 extern char             getwdbuf[];
80
81 extern void afp_options_init __P((struct afp_options *));
82 extern int afp_options_parse __P((int, char **, struct afp_options *));
83 extern int afp_options_parseline __P((char *, struct afp_options *));
84 extern void afp_options_free __P((struct afp_options *,
85                                       const struct afp_options *));
86 extern void setmessage __P((const char *));
87 extern void readmessage __P((void));
88
89 /* gettok.c */
90 extern void initline   __P((int, char *));
91 extern int  parseline  __P((int, char *));
92
93 #ifndef NO_DDP
94 extern void afp_over_asp __P((AFPObj *));
95 #endif /* NO_DDP */
96 extern void afp_over_dsi __P((AFPObj *));
97
98 #endif /* globals.h */