work_queue_catalog.h
00001
00002
00003
00004
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