00001 #ifndef __FRMXFRDAEMON_H__ 00002 #define __FRMXFRDAEMON_H__ 00003 /******************************************************************************/ 00004 /* */ 00005 /* X r d F r m X f r D a e m o n . h h */ 00006 /* */ 00007 /* (c) 2010 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: XrdFrmXfrDaemon.hh 34000 2010-06-21 06:49:56Z ganis $ 00014 00015 #include "XrdFrm/XrdFrmReqBoss.hh" 00016 00017 class XrdFrmXfrDaemon 00018 { 00019 public: 00020 00021 static int Init(); 00022 00023 static void Pong(); 00024 00025 static int Start(); 00026 00027 XrdFrmXfrDaemon() {} 00028 ~XrdFrmXfrDaemon() {} 00029 00030 private: 00031 static XrdFrmReqBoss *Boss(char bType); 00032 00033 static XrdFrmReqBoss GetBoss; 00034 static XrdFrmReqBoss PutBoss; 00035 static XrdFrmReqBoss MigBoss; 00036 static XrdFrmReqBoss StgBoss; 00037 }; 00038 #endif