xrootd
Loading...
Searching...
No Matches
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
36{
37public:
38
39static
40const 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
45static
46const char *cgiC2Src(const char *cKey, const char *xDst, int xTTL,
47 char *Buff, int Blen);
48
49static
50const char *cgiD2Src(const char *cKey, const char *cOrg,
51 char *Buff, int Blen);
52
53static int copyCGI(const char *cgi, char *Buff, int Blen);
54
55static const char *tpcCks;
56static const char *tpcDlg;
57static const char *tpcDst;
58static const char *tpcKey;
59static const char *tpcLfn;
60static const char *tpcOrg;
61static const char *tpcPsh;
62static const char *tpcSgi;
63static const char *tpcSpr;
64static const char *tpcSrc;
65static const char *tpcStr;
66static const char *tpcTpr;
67static const char *tpcTtl;
68static const char *tpcDlgOn;
69
72private:
73
74struct 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
84static bool cgiHost(tpcInfo &Info, const char *hSpec);
85};
86#endif
Definition XrdOucTPC.hh:36
static const char * tpcDlg
Definition XrdOucTPC.hh:56
static const char * tpcOrg
Definition XrdOucTPC.hh:60
static const char * tpcDlgOn
Definition XrdOucTPC.hh:68
XrdOucTPC()
Definition XrdOucTPC.hh:70
static const char * tpcSgi
Definition XrdOucTPC.hh:62
static const char * tpcDst
Definition XrdOucTPC.hh:57
~XrdOucTPC()
Definition XrdOucTPC.hh:71
static const char * tpcTpr
Definition XrdOucTPC.hh:66
static bool cgiHost(tpcInfo &Info, const char *hSpec)
static const char * tpcKey
Definition XrdOucTPC.hh:58
static const char * cgiC2Src(const char *cKey, const char *xDst, int xTTL, char *Buff, int Blen)
static const char * tpcSpr
Definition XrdOucTPC.hh:63
static const char * cgiD2Src(const char *cKey, const char *cOrg, char *Buff, int Blen)
static const char * tpcStr
Definition XrdOucTPC.hh:65
static const char * tpcPsh
Definition XrdOucTPC.hh:61
static int copyCGI(const char *cgi, char *Buff, int Blen)
static const char * tpcLfn
Definition XrdOucTPC.hh:59
static const char * tpcCks
Definition XrdOucTPC.hh:55
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 * tpcSrc
Definition XrdOucTPC.hh:64
static const char * tpcTtl
Definition XrdOucTPC.hh:67
Definition XrdOucTPC.hh:75
char User[256]
Definition XrdOucTPC.hh:78
tpcInfo()
Definition XrdOucTPC.hh:80
char * hName
Definition XrdOucTPC.hh:76
const char * uName
Definition XrdOucTPC.hh:75
const char * pName
Definition XrdOucTPC.hh:77
~tpcInfo()
Definition XrdOucTPC.hh:81