]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/volume.h
Merge master
[netatalk.git] / etc / afpd / volume.h
1 /*
2  * Copyright (c) 1990,1994 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifndef AFPD_VOLUME_H
7 #define AFPD_VOLUME_H 1
8
9 #include <sys/types.h>
10 #include <arpa/inet.h>
11
12 #include <atalk/volume.h>
13 #include <atalk/cnid.h>
14 #include <atalk/unicode.h>
15 #include <atalk/globals.h>
16
17 extern struct vol       *getvolbyvid (const u_int16_t);
18 extern int              ustatfs_getvolspace (const struct vol *,
19             VolSpace *, VolSpace *,
20             u_int32_t *);
21 extern void             setvoltime (AFPObj *, struct vol *);
22 extern int              pollvoltime (AFPObj *);
23 extern void             load_volumes (AFPObj *obj);
24 extern const struct vol *getvolumes(void);
25 extern void             unload_volumes_and_extmap(void);
26 extern void             vol_fce_tm_event(void);
27
28 /* FP functions */
29 int afp_openvol      (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
30 int afp_getvolparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
31 int afp_setvolparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
32 int afp_getsrvrparms (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
33 int afp_closevol     (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
34
35 /* netatalk functions */
36 extern void     close_all_vol   (void);
37
38 struct vol *current_vol;        /* last volume from getvolbyvid() */
39
40 #endif