X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fafpd%2Fstatus.h;h=c4ee50e44aa3569cf0be060ba62f19ac870626af;hb=b3460c7a91a95c030b1019621f1efd73a260ee64;hp=15dc25494327afc94c5ba3a1e9600aa6fa7f6896;hpb=2124172d8708b74ec0851366f9a5cdcc530c91b3;p=netatalk.git diff --git a/etc/afpd/status.h b/etc/afpd/status.h index 15dc2549..c4ee50e4 100644 --- a/etc/afpd/status.h +++ b/etc/afpd/status.h @@ -1,14 +1,11 @@ -/* - * $Id: status.h,v 1.6 2003-04-16 22:45:10 samnoble Exp $ - */ - #ifndef AFPD_STATUS_H #define AFPD_STATUS_H 1 #include #include #include -#include "globals.h" +#include + #include "afp_config.h" /* we use these to prevent whacky alignment problems */ @@ -17,6 +14,7 @@ #define AFPSTATUS_UAMSOFF 4 #define AFPSTATUS_ICONOFF 6 #define AFPSTATUS_FLAGOFF 8 + /* AFPSTATUS_PRELEN is the number of bytes for status data prior to * the ServerName field. * @@ -24,6 +22,7 @@ * UAMCount, VolumeIconAndMask, and the 16-bit "Fixed" status flags. */ #define AFPSTATUS_PRELEN 10 + /* AFPSTATUS_POSTLEN is the number of bytes for offset records * after the ServerName field. * @@ -33,16 +32,22 @@ #define AFPSTATUS_POSTLEN 8 #define AFPSTATUS_LEN (AFPSTATUS_PRELEN + AFPSTATUS_POSTLEN) +/* AFPSTATUS_MACHLEN is the number of characters for the MachineType. */ +#define AFPSTATUS_MACHLEN 16 + #define PASSWD_NONE 0 #define PASSWD_SET (1 << 0) #define PASSWD_NOSAVE (1 << 1) #define PASSWD_ALL (PASSWD_SET | PASSWD_NOSAVE) -extern void status_versions __P((char * /*status*/)); -extern void status_uams __P((char * /*status*/, const char * /*authlist*/)); -extern void status_init __P((AFPConfig *, AFPConfig *, - const struct afp_options *)); -extern int afp_getsrvrinfo __P((AFPObj *, char *, int, char *, int *)); +extern void status_versions (char * /*status*/, const ASP, const DSI *); +extern void status_uams (char * /*status*/, const char * /*authlist*/); +extern void status_init (AFPConfig *, AFPConfig *, + const struct afp_options *); +extern void set_signature(struct afp_options *); + +/* FP functions */ +int afp_getsrvrinfo (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen); #endif