00001 /* 00002 Copyright (C) 2012- The University of Notre Dame 00003 This software is distributed under the GNU General Public License. 00004 See the file COPYING for details. 00005 */ 00006 00007 #ifndef WORK_QUEUE_CATALOG_H 00008 #define WORK_QUEUE_CATALOG_H 00009 00010 #include "list.h" 00011 00012 int work_queue_catalog_parse( char *server_string, char **host, int *port ); 00013 struct list * work_queue_catalog_query( const char *catalog_host, int catalog_port, const char *project_regex ); 00014 struct list * work_queue_catalog_query_cached( const char *catalog_host, int catalog_port, const char *project_regex ); 00015 00016 #endif