catalog_server.h

00001 /*
00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin
00003 Copyright (C) 2005- The University of Notre Dame
00004 This software is distributed under the GNU General Public License.
00005 See the file COPYING for details.
00006 */
00007 
00008 #ifndef CATALOG_H
00009 #define CATALOG_H
00010 
00011 #include <stdlib.h>
00012 
00013 #define CATALOG_HOST_DEFAULT "catalog.cse.nd.edu"
00014 #define CATALOG_PORT_DEFAULT 9097
00015 
00016 #define CATALOG_HOST (getenv("CATALOG_HOST") ? getenv("CATALOG_HOST") : CATALOG_HOST_DEFAULT )
00017 #define CATALOG_PORT (getenv("CATALOG_PORT") ? atoi(getenv("CATALOG_PORT")) : CATALOG_PORT_DEFAULT )
00018 
00019 #define CATALOG_TYPE_WORK_QUEUE_MASTER "wq_master"
00020 #define CATALOG_TYPE_WORK_QUEUE_POOL "wq_pool"
00021 
00022 #endif

Generated on 10 Apr 2014 for cctools by  doxygen 1.6.1