X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=etc%2Fafpd%2Fglobals.h;h=4d81463d44dfadc860fa71a4fca423e7daa32820;hp=02dcf8b56b58abd1dd00d02dbe44452a2c19a3e4;hb=6d60f95c388da5f8f901d67e0018cf4896e6c6dc;hpb=af898e14ed8928adb6a5bedcd21d4e2731860eaa diff --git a/etc/afpd/globals.h b/etc/afpd/globals.h index 02dcf8b5..4d81463d 100644 --- a/etc/afpd/globals.h +++ b/etc/afpd/globals.h @@ -7,7 +7,6 @@ #define AFPD_GLOBALS_H 1 #include -#include #ifdef ADMIN_GRP #include @@ -44,14 +43,6 @@ #define OPTION_ACL2MACCESS (1 << 8) #define OPTION_NOZEROCONF (1 << 9) -#ifdef FORCE_UIDGID -/* set up a structure for this */ -typedef struct uidgidset_t { - uid_t uid; - gid_t gid; -} uidgidset; -#endif /* FORCE_UIDGID */ - /* a couple of these options could get stuck in unions to save * space. */ struct afp_volume_name { @@ -70,7 +61,6 @@ struct afp_options { 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; char *pidfile; char *sigconffile; @@ -116,10 +106,6 @@ typedef struct _AFPObj { 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; -#endif } AFPObj; /* typedef for AFP functions handlers */ @@ -158,9 +144,6 @@ extern const char *AfpErr2name(int err); /* directory.c */ extern struct dir rootParent; -#ifndef NO_DDP -extern void afp_over_asp (AFPObj *); -#endif /* NO_DDP */ extern void afp_over_dsi (AFPObj *); #endif /* globals.h */