X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fafpd%2Fglobals.h;h=02dcf8b56b58abd1dd00d02dbe44452a2c19a3e4;hb=38ccba34fde227ceec6253f8537b42ce012da367;hp=e37ebf64644d7546e8a35f7dc8dc5cd9926af090;hpb=64c01c136e708085840814c92ff7cf829a794317;p=netatalk.git diff --git a/etc/afpd/globals.h b/etc/afpd/globals.h index e37ebf64..02dcf8b5 100644 --- a/etc/afpd/globals.h +++ b/etc/afpd/globals.h @@ -24,7 +24,13 @@ #include #include -#define MACFILELEN 31 +/* #define DOSFILELEN 12 */ /* Type1, DOS-compat*/ +#define MACFILELEN 31 /* Type2, HFS-compat */ +#define UTF8FILELEN_EARLY 255 /* Type3, early Mac OS X 10.0-10.4.? */ +/* #define UTF8FILELEN_NAME_MAX 765 */ /* Type3, 10.4.?- , getconf NAME_MAX */ +/* #define UTF8FILELEN_SPEC 0xFFFF */ /* Type3, spec on document */ +/* #define HFSPLUSFILELEN 510 */ /* HFS+ spec, 510byte = 255codepoint */ + #define MAXUSERLEN 256 #define OPTION_DEBUG (1 << 0) @@ -57,8 +63,12 @@ struct afp_volume_name { struct afp_options { int connections, transports, tickleval, timeout, server_notif, flags, dircachesize; + int sleep; /* Maximum time allowed to sleep (in tickles) */ + int disconnected; /* Maximum time in disconnected state (in tickles) */ + unsigned int tcp_sndbuf, tcp_rcvbuf; unsigned char passwdbits, passwdminlen, loginmaxfail; u_int32_t server_quantum; + int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */ char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *port, *configfile; struct at_addr ddpaddr; char *uampath, *fqdn; @@ -78,7 +88,6 @@ struct afp_options { charset_t maccharset, unixcharset; mode_t umask; mode_t save_mask; - int sleep; #ifdef ADMIN_GRP gid_t admingid; #endif /* ADMIN_GRP */ @@ -101,13 +110,12 @@ typedef struct _AFPObj { void (*logout)(void), (*exit)(int); int (*reply)(void *, int); int (*attention)(void *, AFPUserBytes); - void (*sleep)(void); /* to prevent confusion, only use these in afp_* calls */ char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1]; void *uam_cookie; /* cookie for uams */ struct session_info sinfo; uid_t uid; /* client running user id */ - + int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */ #ifdef FORCE_UIDGID int force_uid; uidgidset uidgid;