xrootd
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
XrdOucTPC.hh
Go to the documentation of this file.
1 #ifndef __XRDOUCTPC_HH__
2 #define __XRDOUCTPC_HH__
3 /******************************************************************************/
4 /* */
5 /* X r d O u c T P C . h h */
6 /* */
7 /* (c) 2012 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 Department of Energy */
11 /* */
12 /* This file is part of the XRootD software suite. */
13 /* */
14 /* XRootD is free software: you can redistribute it and/or modify it under */
15 /* the terms of the GNU Lesser General Public License as published by the */
16 /* Free Software Foundation, either version 3 of the License, or (at your */
17 /* option) any later version. */
18 /* */
19 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */
20 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
21 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
22 /* License for more details. */
23 /* */
24 /* You should have received a copy of the GNU Lesser General Public License */
25 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
26 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
27 /* */
28 /* The copyright holder's institutional names and contributor's names may not */
29 /* be used to endorse or promote products derived from this software without */
30 /* specific prior written permission of the institution or contributor. */
31 /******************************************************************************/
32 
33 #include <cstdlib>
34 
35 class XrdOucTPC
36 {
37 public:
38 
39 static
40 const char *cgiC2Dst(const char *cKey, const char *xSrc, const char *xLfn,
41  const char *xCks, char *Buff, int Blen, int strms=0,
42  const char *iHst=0, const char *sprt=0, const char *tprt=0,
43  bool dlgon=false, bool push=false);
44 
45 static
46 const char *cgiC2Src(const char *cKey, const char *xDst, int xTTL,
47  char *Buff, int Blen);
48 
49 static
50 const char *cgiD2Src(const char *cKey, const char *cOrg,
51  char *Buff, int Blen);
52 
53 static int copyCGI(const char *cgi, char *Buff, int Blen);
54 
55 static const char *tpcCks;
56 static const char *tpcDlg;
57 static const char *tpcDst;
58 static const char *tpcKey;
59 static const char *tpcLfn;
60 static const char *tpcOrg;
61 static const char *tpcPsh;
62 static const char *tpcSgi;
63 static const char *tpcSpr;
64 static const char *tpcSrc;
65 static const char *tpcStr;
66 static const char *tpcTpr;
67 static const char *tpcTtl;
68 static const char *tpcDlgOn;
69 
70  XrdOucTPC() {}
72 private:
73 
74 struct tpcInfo
75  {const char *uName;
76  char *hName;
77  const char *pName;
78  char User[256];
79 
80  tpcInfo() : uName(""), hName(0), pName("") {}
81  ~tpcInfo() {if (hName) free(hName);}
82  };
83 
84 static bool cgiHost(tpcInfo &Info, const char *hSpec);
85 };
86 #endif
static const char * tpcSrc
Definition: XrdOucTPC.hh:64
static const char * tpcSgi
Definition: XrdOucTPC.hh:62
~tpcInfo()
Definition: XrdOucTPC.hh:81
static const char * tpcSpr
Definition: XrdOucTPC.hh:63
static const char * tpcDst
Definition: XrdOucTPC.hh:57
static const char * tpcDlg
Definition: XrdOucTPC.hh:56
static const char * cgiD2Src(const char *cKey, const char *cOrg, char *Buff, int Blen)
static bool cgiHost(tpcInfo &Info, const char *hSpec)
tpcInfo()
Definition: XrdOucTPC.hh:80
Definition: XrdOucTPC.hh:74
static const char * tpcDlgOn
Definition: XrdOucTPC.hh:68
const char * uName
Definition: XrdOucTPC.hh:75
static const char * tpcTpr
Definition: XrdOucTPC.hh:66
static const char * tpcTtl
Definition: XrdOucTPC.hh:67
char User[256]
Definition: XrdOucTPC.hh:78
Definition: XrdOucTPC.hh:35
static const char * tpcStr
Definition: XrdOucTPC.hh:65
static const char * cgiC2Dst(const char *cKey, const char *xSrc, const char *xLfn, const char *xCks, char *Buff, int Blen, int strms=0, const char *iHst=0, const char *sprt=0, const char *tprt=0, bool dlgon=false, bool push=false)
static const char * tpcOrg
Definition: XrdOucTPC.hh:60
static const char * tpcPsh
Definition: XrdOucTPC.hh:61
static const char * tpcLfn
Definition: XrdOucTPC.hh:59
Definition: XrdMacaroonsHandler.hh:18
static const char * tpcKey
Definition: XrdOucTPC.hh:58
~XrdOucTPC()
Definition: XrdOucTPC.hh:71
static const char * cgiC2Src(const char *cKey, const char *xDst, int xTTL, char *Buff, int Blen)
XrdOucTPC()
Definition: XrdOucTPC.hh:70
static int copyCGI(const char *cgi, char *Buff, int Blen)
static const char * tpcCks
Definition: XrdOucTPC.hh:55
char * hName
Definition: XrdOucTPC.hh:76
const char * pName
Definition: XrdOucTPC.hh:77