xrootd
XrdOssConfig.hh
Go to the documentation of this file.
1 #ifndef _XRDOSS_CONFIG_H
2 #define _XRDOSS_CONFIG_H
3 /******************************************************************************/
4 /* */
5 /* X r d O s s C o n f i g . h h */
6 /* */
7 /* (C) 2009 by the Board of Trustees of the Leland Stanford, Jr., University */
8 /* All Rights Reserved */
9 /* Produced by Andrew Hanushevsky for Stanford University under contract */
10 /* DE-AC02-76-SFO0515 with the Deprtment of Energy */
11 /******************************************************************************/
12 
13 // $Id$
14 
15 #define XRDOSS_VERSION "2.0.0"
16 
17 /* Constant to indicate all went well.
18 */
19 #ifndef XrdOssOK
20 #define XrdOssOK 0
21 #endif
22 
23 // Flags set in OptFlags
24 //
25 #define XrdOss_USRPRTY 0x00000001
26 #define XrdOss_CacheFS 0x00000002
27 
28 // Small structure to hold dual paths
29 //
30 struct OssDPath
32  char *Path1;
33  char *Path2;
34  OssDPath(OssDPath *dP,char *p1,char *p2) : Next(dP),Path1(p1),Path2(p2) {}
35  };
36 #endif