Skip to content

Commit

Permalink
[Server] Do not expose private header via prepare plugin interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 authored and simonmichal committed Jun 21, 2019
1 parent 956b206 commit c844fe3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/XrdOfs/XrdOfsPrepare.hh
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
//! Class XrdOfsPrepare is used to customize the kXR_prepare request. It is an
//! OFS layer plugin and loaded via the ofs.preplib directive.

class XrdOfs;
class XrdOss;
class XrdOucEnv;
class XrdOucErrInfo;
class XrdSecEntity;
class XrdSfsPrep;
class XrdSfs;

class XrdOfsPrepare
{
Expand Down Expand Up @@ -130,7 +130,7 @@ virtual ~XrdOfsPrepare() {}
//! may be null though that would be impossible.
//! @param parms -> Argument string specified on the namelib directive. It may
//! be null or point to a null string if no parms exist.
//! @param theOfs-> Pointer to the OFS plugin.
//! @param theSfs-> Pointer to the SFS plugin.
//! @param theOSs-> Pointer to the OSS plugin.
//!
//! @return Success: A pointer to an instance of the XrdOfsPrepare object.
Expand All @@ -142,15 +142,15 @@ class XrdSysError;
typedef XrdOfsPrepare *(*XrdOfsgetPrepare_t)(XrdSysError *eDest,
const char *confg,
const char *parms,
XrdOfs *theOfs,
XrdSfs *theSfs,
XrdOss *theOss,
XrdOucEnv *envP
);

#define XrdOfsgetPrepareArguments XrdSysError *eDest,\
const char *confg,\
const char *parms,\
XrdOfs *theOfs,\
XrdSfs *theSfs,\
XrdOss *theOss,\
XrdOucEnv *envP
/*
Expand Down

0 comments on commit c844fe3

Please sign in to comment.