]> arthur.barton.de Git - netatalk.git/blobdiff - etc/afpd/auth.h
Merge master
[netatalk.git] / etc / afpd / auth.h
index a473757da317d39fdde3f5e18af051ead7abd6dd..46c23fbd1fc7bfe856ef3377bb42ee1879c6f030 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id: auth.h,v 1.7 2009-02-02 11:55:00 franklahm Exp $
- *
  * Copyright (c) 1990,1993 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
  */
@@ -8,21 +6,28 @@
 #ifndef AFPD_AUTH_H
 #define AFPD_AUTH_H 1
 
-#ifdef HAVE_LIMITS_H
 #include <limits.h>
-#endif /* HAVE_LIMITS_H */
 
-#ifdef HAVE_SYS_CDEFS_H
-#include <sys/cdefs.h>
-#endif /* HAVE_SYS_CDEFS_H */
-
-#include "globals.h"
+#include <atalk/globals.h>
 
 struct afp_versions {
     char       *av_name;
     int                av_number;
 };
 
+static const struct afp_versions  afp_versions[] = {
+#ifndef NO_DDP
+    { "AFPVersion 1.1", 11 },
+    { "AFPVersion 2.0", 20 },
+    { "AFPVersion 2.1", 21 },
+#endif /* ! NO_DDP */
+    { "AFP2.2", 22 },
+    { "AFPX03", 30 },
+    { "AFP3.1", 31 },
+    { "AFP3.2", 32 },
+    { "AFP3.3", 33 }
+};
+
 /* for GetUserInfo */
 #define USERIBIT_USER  (1 << 0)
 #define USERIBIT_GROUP (1 << 1)
@@ -38,14 +43,14 @@ extern gid_t        *groups;
 extern int     ngroups;
 
 /* FP functions */
-extern int     afp_login __P((AFPObj *, char *, int, char *, int *));
-extern int     afp_login_ext __P((AFPObj *, char *, unsigned int, char *, unsigned int *));
-extern int     afp_logincont __P((AFPObj *, char *, int, char *, int *));
-extern int     afp_changepw __P((AFPObj *, char *, int, char *, int *));
-extern int     afp_logout __P((AFPObj *, char *, int, char *, int *));
-extern int      afp_getuserinfo __P((AFPObj *, char *, int, char *, int *));
-extern int      afp_getsession __P((AFPObj *, char *, unsigned int, char *, unsigned int *));
-extern int      afp_disconnect __P((AFPObj *, char *, int, char *, int *));
-extern int      afp_zzz __P((AFPObj *, char *, unsigned int, char *, unsigned int *));
+int afp_login (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_login_ext (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_logincont (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_changepw (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_logout (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_getuserinfo (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_getsession (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_disconnect (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
+int afp_zzz (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
 
 #endif /* auth.h */