b4953bb3495c56cccbaa88f7ac2c83c1c7dacd66 kent Tue Dec 7 10:59:36 2010 -0800 Adding hubConnect module to help manage list of hubs that are available. diff --git src/hg/inc/hubConnect.h src/hg/inc/hubConnect.h new file mode 100644 index 0000000..2bcd46d --- /dev/null +++ src/hg/inc/hubConnect.h @@ -0,0 +1,15 @@ +/* hubConnect - stuff to manage connections to track hubs. Most of this is mediated through + * the hubConnect table in the hgCentral database. Here there are routines to translate between + * hub symbolic names and hub URLs, to see if a hub is up or down or sideways (up but badly + * formatted) etc. */ + +#ifndef HUBCONNECT_H +#define HUBCONNECT_H + +#define hubConnectTableName "hubConnect" +/* Name of our table. */ + +boolean hubConnectTableExists(); +/* Return TRUE if the hubConnect table exists. */ + +#endif /* HUBCONNECT_H */