]> arthur.barton.de Git - netatalk.git/blob - include/atalk/volinfo.h
6a290059e6f287b20eed72f49ad98fc4c2b8e1ee
[netatalk.git] / include / atalk / volinfo.h
1 /*
2  * $Id: volinfo.h,v 1.3 2009-04-27 07:58:26 franklahm Exp $
3  */
4
5 #ifndef _ATALK_VOLINFO_H
6 #define _ATALK_VOLINFO_H 1
7
8 /* FIXME: following duplicated from etc/afpd/volume.h  */
9
10 /* flags that alter volume behaviour. */
11 #define AFPVOL_A2VOL     (1 << 5)   /* prodos volume */
12 #define AFPVOL_CRLF      (1 << 6)   /* cr/lf translation */
13 #define AFPVOL_NOADOUBLE (1 << 7)   /* don't create .AppleDouble by default */
14 #define AFPVOL_RO        (1 << 8)   /* read-only volume */
15 #define AFPVOL_MSWINDOWS (1 << 9)   /* deal with ms-windows yuckiness. this is going away. */
16 #define AFPVOL_NOHEX     (1 << 10)  /* don't do :hex translation */
17 #define AFPVOL_USEDOTS   (1 << 11)  /* use real dots */
18 #define AFPVOL_LIMITSIZE (1 << 12)  /* limit size for older macs */
19 #define AFPVOL_MAPASCII  (1 << 13)  /* map the ascii range as well */
20 #define AFPVOL_DROPBOX   (1 << 14)  /* dropkludge dropbox support */
21 #define AFPVOL_NOFILEID  (1 << 15)  /* don't advertise createid resolveid and deleteid calls */
22 #define AFPVOL_NOSTAT    (1 << 16)  /* advertise the volume even if we can't stat() it
23                                      * maybe because it will be mounted later in preexec */
24 #define AFPVOL_UNIX_PRIV (1 << 17)  /* support unix privileges */
25 #define AFPVOL_NODEV     (1 << 18)  /* always use 0 for device number in cnid calls
26                                      * help if device number is notconsistent across reboot
27                                      * NOTE symlink to a different device will return an ACCESS error */
28 #define AFPVOL_CASEINSEN (1 << 19)  /* volume is case insensitive */
29 #define AFPVOL_EILSEQ    (1 << 20)  /* encode illegal sequence 'asis' UCS2, ex "\217-", which is not 
30                                        a valid SHIFT-JIS char, is encoded  as U\217 -*/
31 #define AFPVOL_CACHE     (1 << 21)   /* Use adouble v2 CNID caching, default don't use it */
32 #define AFPVOL_INV_DOTS  (1 << 22)   /* dots files are invisible */
33 #define AFPVOL_EXT_ATTRS (1 << 23)   /* Volume supports Extended Attributes */
34 #define AFPVOL_ACLS      (1 << 25)   /* Volume supports ACLS */
35
36
37 /* handle casefolding */
38 #define AFPVOL_MTOUUPPER       (1 << 0)
39 #define AFPVOL_MTOULOWER       (1 << 1)
40 #define AFPVOL_UTOMUPPER       (1 << 2)
41 #define AFPVOL_UTOMLOWER       (1 << 3)
42 #define AFPVOL_UMLOWER         (AFPVOL_MTOULOWER | AFPVOL_UTOMLOWER)
43 #define AFPVOL_UMUPPER         (AFPVOL_MTOUUPPER | AFPVOL_UTOMUPPER)
44 #define AFPVOL_UUPPERMLOWER    (AFPVOL_MTOUUPPER | AFPVOL_UTOMLOWER)
45 #define AFPVOL_ULOWERMUPPER    (AFPVOL_MTOULOWER | AFPVOL_UTOMUPPER)
46
47
48 #endif