]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
remove gcc warnings and cleanup inline mess
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.18.2.2.2.5.2.1 2008-11-25 15:16:33 didg 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 #include <atalk/unicode.h>
27 #include <atalk/uam.h>
28
29 #define MACFILELEN 31
30
31 #define OPTION_DEBUG         (1 << 0)
32 #define OPTION_USERVOLFIRST  (1 << 1)
33 #define OPTION_NOUSERVOL     (1 << 2)
34 #define OPTION_PROXY         (1 << 3)
35 #define OPTION_CUSTOMICON    (1 << 4)
36 #define OPTION_NOSLP         (1 << 5)
37 #define OPTION_ANNOUNCESSH   (1 << 6)
38
39 #ifdef FORCE_UIDGID
40 /* set up a structure for this */
41 typedef struct uidgidset_t {
42     uid_t uid;
43     gid_t gid;
44 } uidgidset;
45 #endif /* FORCE_UIDGID */
46
47 /* a couple of these options could get stuck in unions to save
48  * space. */
49 struct afp_volume_name {
50     time_t     mtime;
51     char       *name;
52     char       *full_name;
53     int        loaded;
54 };
55
56 struct afp_options {
57     int connections, port, transports, tickleval, timeout, server_notif, flags;
58     unsigned char passwdbits, passwdminlen, loginmaxfail;
59     u_int32_t server_quantum;
60     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *configfile;
61     struct at_addr ddpaddr;
62     char *uampath, *fqdn;
63     char *pidfile;
64     struct afp_volume_name defaultvol, systemvol, uservol;
65
66     char *guest, *loginmesg, *keyfile, *passwdfile;
67     char *uamlist;
68     char *authprintdir;
69     char *signature;
70     char *k5service, *k5realm, *k5keytab;
71     char *unixcodepage,*maccodepage;
72     charset_t maccharset, unixcharset; 
73     mode_t umask;
74     mode_t save_mask;
75     int    sleep;
76 #ifdef ADMIN_GRP
77     gid_t admingid;
78 #endif /* ADMIN_GRP */
79 };
80
81 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
82 typedef struct AFPObj {
83     int proto;
84     unsigned long servernum;
85     void *handle, *config;
86     struct afp_options options;
87     char *Obj, *Type, *Zone;
88     char username[MACFILELEN + 1];
89     void (*logout)(void), (*exit)(int);
90     int (*reply)(void *, int);
91     int (*attention)(void *, AFPUserBytes);
92     void (*sleep)(void);
93     /* to prevent confusion, only use these in afp_* calls */
94     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
95     void *uam_cookie; /* cookie for uams */
96     struct session_info  sinfo;
97
98 #ifdef FORCE_UIDGID
99     int                 force_uid;
100     uidgidset           uidgid;
101 #endif
102 } AFPObj;
103
104 extern int              afp_version;
105 extern int              afp_errno;
106 extern unsigned char    nologin;
107 extern struct dir       *curdir;
108 extern char             getwdbuf[];
109
110 /* FIXME CNID */
111 extern char             Cnid_srv[MAXHOSTNAMELEN + 1];
112 extern int              Cnid_port;
113
114 extern int  get_afp_errno   __P((const int param));
115 extern void afp_options_init __P((struct afp_options *));
116 extern int afp_options_parse __P((int, char **, struct afp_options *));
117 extern int afp_options_parseline __P((char *, struct afp_options *));
118 extern void afp_options_free __P((struct afp_options *,
119                                       const struct afp_options *));
120 extern void setmessage __P((const char *));
121 extern void readmessage __P((AFPObj *));
122
123 /* gettok.c */
124 extern void initline   __P((int, char *));
125 extern int  parseline  __P((int, char *));
126
127 /* afp_util.c */
128 const char *AfpNum2name __P((int ));
129
130 #ifndef NO_DDP
131 extern void afp_over_asp __P((AFPObj *));
132 #endif /* NO_DDP */
133 extern void afp_over_dsi __P((AFPObj *));
134
135 #endif /* globals.h */