Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:27:54

0001 #ifndef __NETCMSNOTIFY_HH
0002 #define __NETCMSNOTIFY_HH
0003 /******************************************************************************/
0004 /*                                                                            */
0005 /*                    X r d N e t C m s N o t i f y . h h                     */
0006 /*                                                                            */
0007 /* (c) 2010 by the Board of Trustees of the Leland Stanford, Jr., University  */
0008 /*                            All Rights Reserved                             */
0009 /*   Produced by Andrew Hanushevsky for Stanford University under contract    */
0010 /*              DE-AC02-76-SFO0515 with the Department of Energy              */
0011 /*                                                                            */
0012 /* This file is part of the XRootD software suite.                            */
0013 /*                                                                            */
0014 /* XRootD is free software: you can redistribute it and/or modify it under    */
0015 /* the terms of the GNU Lesser General Public License as published by the     */
0016 /* Free Software Foundation, either version 3 of the License, or (at your     */
0017 /* option) any later version.                                                 */
0018 /*                                                                            */
0019 /* XRootD is distributed in the hope that it will be useful, but WITHOUT      */
0020 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or      */
0021 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public       */
0022 /* License for more details.                                                  */
0023 /*                                                                            */
0024 /* You should have received a copy of the GNU Lesser General Public License   */
0025 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file  */
0026 /* COPYING (GPL license).  If not, see <http://www.gnu.org/licenses/>.        */
0027 /*                                                                            */
0028 /* The copyright holder's institutional names and contributor's names may not */
0029 /* be used to endorse or promote products derived from this software without  */
0030 /* specific prior written permission of the institution or contributor.       */
0031 /******************************************************************************/
0032   
0033 class XrdNetMsg;
0034 class XrdSysError;
0035 
0036 class XrdNetCmsNotify
0037 {
0038 public:
0039 
0040 int  Gone(const char *Path, int isPfn=1);
0041 
0042 int  Have(const char *Path, int isPfn=1);
0043 
0044 static const int isServ = 0x0001;
0045 static const int noPace = 0x0002;
0046 
0047              XrdNetCmsNotify(XrdSysError *erp, const char *aPath,
0048                              const char *iName, int Opts=0);
0049             ~XrdNetCmsNotify();
0050 
0051 private:
0052 int  Send(const char *Buff, int Blen);
0053 
0054 XrdSysError *eDest;
0055 XrdNetMsg   *xMsg;
0056 char        *destPath;
0057 int          Pace;
0058 };
0059 #endif