X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fatalk%2Fvolume.h;h=842b705d501ba7ce2bcbfcb93346aac87348b310;hb=cb8de5b604041071f3454dd8df97295544caba59;hp=e2458ec4c9a077eb02ab9f5cc52609f082d06f89;hpb=5a4a20436042ff567ebda2518f0944dacf4d01fc;p=netatalk.git diff --git a/include/atalk/volume.h b/include/atalk/volume.h index e2458ec4..842b705d 100644 --- a/include/atalk/volume.h +++ b/include/atalk/volume.h @@ -1,6 +1,4 @@ /* - * $Id: volume.h,v 1.15 2010-02-19 10:51:59 franklahm Exp $ - * * Copyright (c) 1990,1994 Regents of The University of Michigan. * All Rights Reserved. See COPYRIGHT. */ @@ -8,7 +6,6 @@ #ifndef ATALK_VOLUME_H #define ATALK_VOLUME_H 1 -#include #include #include @@ -20,14 +17,14 @@ #define AFPVOL_U8MNAMELEN 255 /* AFP3 sepc */ #define AFPVOL_MACNAMELEN 27 /* AFP2 spec */ +typedef u_int64_t VolSpace; + struct vol { struct vol *v_next; u_int16_t v_vid; int v_flags; char *v_path; - struct dir *v_dir, *v_root; - struct dir *v_curdir; /* cache */ - hash_t *v_hash; + struct dir *v_root; time_t v_mtime; charset_t v_volcharset; @@ -40,9 +37,10 @@ struct vol { char *v_veto; int v_adouble; /* adouble format: v1, v2, sfm ... */ int v_ad_options; /* adouble option NODEV, NOCACHE, etc.. */ - char *(*ad_path)(const char *, int); + const char *(*ad_path)(const char *, int); struct _cnid_db *v_cdb; char v_stamp[ADEDLEN_PRIVSYN]; + VolSpace v_limitsize; /* Size limit, if any, in MiB */ mode_t v_umask; mode_t v_perm; /* default permission value OR with requested perm*/ mode_t v_dperm; /* default directories permission value OR with requested perm*/ @@ -73,6 +71,8 @@ struct vol { char *v_password; char *v_cnidscheme; char *v_dbpath; + char *v_cnidserver; + char *v_cnidport; int v_hide; /* new volume wait until old volume is closed */ int v_new; /* volume deleted but there's a new one with the same name */ int v_deleted; /* volume open but deleted in new config file */ @@ -82,22 +82,12 @@ struct vol { char *v_postexec; int v_root_preexec_close; int v_preexec_close; - -#ifdef FORCE_UIDGID - char *v_forceuid; - char *v_forcegid; -#endif + char *v_uuid; /* For TimeMachine zeroconf record */ #ifdef __svr4__ int v_qfd; #endif /*__svr4__*/ }; -#ifdef NO_LARGE_VOL_SUPPORT -typedef u_int32_t VolSpace; -#else /* NO_LARGE_VOL_SUPPORT */ -typedef u_int64_t VolSpace; -#endif /* NO_LARGE_VOL_SUPPORT */ - #define AFPVOL_OPEN (1<<0) /* flags for AFS and quota 0xxx0 */ @@ -109,7 +99,7 @@ typedef u_int64_t VolSpace; /* Flags that alter volume behaviour. - Keep in sync with include/atalk/volinfo.h and libatalk/util/volinfo.c + Keep in sync with libatalk/util/volinfo.c */ #define AFPVOL_A2VOL (1 << 5) /* prodos volume */ #define AFPVOL_CRLF (1 << 6) /* cr/lf translation */ @@ -121,7 +111,6 @@ typedef u_int64_t VolSpace; #define AFPVOL_USEDOTS (1 << 11) /* use real dots */ #define AFPVOL_LIMITSIZE (1 << 12) /* limit size for older macs */ #define AFPVOL_MAPASCII (1 << 13) /* map the ascii range as well */ -#define AFPVOL_DROPBOX (1 << 14) /* dropkludge dropbox support */ #define AFPVOL_NOFILEID (1 << 15) /* don't advertise createid resolveid and deleteid calls */ #define AFPVOL_NOSTAT (1 << 16) /* advertise the volume even if we can't stat() it * maybe because it will be mounted later in preexec */ @@ -136,8 +125,13 @@ typedef u_int64_t VolSpace; #define AFPVOL_CACHE (1 << 21) /* Use adouble v2 CNID caching. Default: yes */ #define AFPVOL_INV_DOTS (1 << 22) /* dots files are invisible */ -#define AFPVOL_TM (1 << 24) /* Supports TimeMachine */ -#define AFPVOL_ACLS (1 << 25) /* Volume supports ACLS */ +#define AFPVOL_TM (1 << 23) /* Supports TimeMachine */ +#define AFPVOL_ACLS (1 << 24) /* Volume supports ACLS */ +#define AFPVOL_SEARCHDB (1 << 25) /* Use fast CNID db search instead of filesystem */ +/* Found this in branch dir-rewrite, maybe we want to use it sometimes */ +#if 0 +#define AFPVOL_CDROM (1 << XX) /* Ejectable media eg CD -> in memory CNID db */ +#endif /* Extended Attributes vfs indirection */ #define AFPVOL_EA_NONE 0 /* No EAs */ @@ -195,11 +189,7 @@ int wincheck(const struct vol *vol, const char *path); #define VOLPBIT_XBTOTAL 10 #define VOLPBIT_BSIZE 11 /* block size */ -#ifdef AFP3x #define utf8_encoding() (afp_version >= 30) -#else -#define utf8_encoding() (0) -#endif #define vol_noadouble(vol) (((vol)->v_flags & AFPVOL_NOADOUBLE) ? 1 : 0) #define vol_nodev(vol) (((vol)->v_flags & AFPVOL_NODEV) ? 1 : 0)