X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fatalk%2Fglobals.h;h=b876280860ce015a4f8b703a7269816f61cd6201;hb=22a32e7449133013789f3fc7ff6b32772b0c76cc;hp=6f8ff68f7c79f0b10990120380f5abb4738705f3;hpb=82195e48bedce7bf1e214679c3cceb0cb33845eb;p=netatalk.git diff --git a/include/atalk/globals.h b/include/atalk/globals.h index 6f8ff68f..b8762808 100644 --- a/include/atalk/globals.h +++ b/include/atalk/globals.h @@ -48,15 +48,17 @@ #define OPTION_CLOSEVOL (1 << 1) #define OPTION_SERVERNOTIF (1 << 2) #define OPTION_NOSENDFILE (1 << 3) -/* #define OPTION_CUSTOMICON (1 << 4) */ +#define OPTION_VETOMSG (1 << 4) /* whether to send an AFP message for veto file access */ #define OPTION_AFP_READ_LOCK (1 << 5) /* whether to do AFP spec conforming read locks (default: no) */ #define OPTION_ANNOUNCESSH (1 << 6) #define OPTION_UUID (1 << 7) #define OPTION_ACL2MACCESS (1 << 8) #define OPTION_NOZEROCONF (1 << 9) +#define OPTION_ACL2MODE (1 << 10) #define OPTION_SHARE_RESERV (1 << 11) /* whether to use Solaris fcntl F_SHARE locks */ #define OPTION_DBUS_AFPSTATS (1 << 12) /* whether to run dbus thread for afpstats */ -#define OPTION_SPOTLIGHT (1 << 13) /* whether to enable Spotlight support */ +#define OPTION_SPOTLIGHT (1 << 13) /* whether to initialize Spotlight support */ +#define OPTION_SPOTLIGHT_VOL (1 << 14) /* whether spotlight shall be enabled by default for volumes */ #define PASSWD_NONE 0 #define PASSWD_SET (1 << 0) @@ -94,7 +96,7 @@ struct afp_options { uint32_t server_quantum; int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */ char *hostname; - char *listen, *port; + char *listen, *interfaces, *port; char *Cnid_srv, *Cnid_port; char *configfile; char *uampath, *fqdn; @@ -105,6 +107,8 @@ struct afp_options { char *signatureopt; unsigned char signature[16]; char *k5service, *k5realm, *k5keytab; + size_t k5principal_buflen; + char *k5principal; char *unixcodepage, *maccodepage, *volcodepage; charset_t maccharset, unixcharset; mode_t umask; @@ -117,8 +121,8 @@ struct afp_options { char *logfile; char *mimicmodel; char *adminauthuser; + char *ignored_attr; char *slmod_path; - int tracker_loglevel; struct afp_volume_name volfile; }; @@ -139,6 +143,7 @@ typedef struct AFPObj { gid_t *groups; int ngroups; int afp_version; + int cnx_cnt, cnx_max; /* Functions */ void (*logout)(void); void (*exit)(int); @@ -163,7 +168,7 @@ extern const char *Cnid_port; extern int get_afp_errno (const int param); extern void afp_options_init (struct afp_options *); extern void afp_options_parse_cmdline(AFPObj *obj, int ac, char **av); -extern void setmessage (const char *); +extern int setmessage (const char *); extern void readmessage (AFPObj *); /* afp_util.c */