]> arthur.barton.de Git - netatalk.git/blob - include/atalk/volinfo.h
- merge branch-netatalk-afp-3x-dev, HEAD was tagged before
[netatalk.git] / include / atalk / volinfo.h
1 /*
2  * $Id: volinfo.h,v 1.2 2005-04-28 20:49:51 bfernhomberg 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                                      */
29 /* handle casefolding */
30 #define AFPVOL_MTOUUPPER       (1 << 0)
31 #define AFPVOL_MTOULOWER       (1 << 1)
32 #define AFPVOL_UTOMUPPER       (1 << 2)
33 #define AFPVOL_UTOMLOWER       (1 << 3)
34 #define AFPVOL_UMLOWER         (AFPVOL_MTOULOWER | AFPVOL_UTOMLOWER)
35 #define AFPVOL_UMUPPER         (AFPVOL_MTOUUPPER | AFPVOL_UTOMUPPER)
36 #define AFPVOL_UUPPERMLOWER    (AFPVOL_MTOUUPPER | AFPVOL_UTOMLOWER)
37 #define AFPVOL_ULOWERMUPPER    (AFPVOL_MTOULOWER | AFPVOL_UTOMUPPER)
38
39
40 #endif