00001 #ifndef _CNS_DAEMON_H_ 00002 #define _CNS_DAEMON_H_ 00003 /******************************************************************************/ 00004 /* */ 00005 /* X r d C n s D a e m o n . h h */ 00006 /* */ 00007 /* (c) 2007 by the Board of Trustees of the Leland Stanford, Jr., University */ 00008 /* All Rights Reserved */ 00009 /* Produced by Andrew Hanushevsky for Stanford University under contract */ 00010 /* DE-AC02-76-SFO0515 with the Department of Energy */ 00011 /******************************************************************************/ 00012 00013 // $Id: XrdCnsDaemon.hh 32231 2010-02-05 18:24:46Z ganis $ 00014 00015 #include "XrdSys/XrdSysPthread.hh" 00016 00017 class XrdOucStream; 00018 00019 class XrdCnsDaemon 00020 { 00021 public: 00022 00023 void getEvents(XrdOucStream &, const char *Who); 00024 00025 XrdCnsDaemon() {} 00026 ~XrdCnsDaemon() {} 00027 00028 private: 00029 00030 char *getLFN(XrdOucStream &Events); 00031 }; 00032 #endif