a74c645505a135d5c1e923afe477cdeb9c15bded markd Wed Jul 8 22:27:42 2020 -0700 added including multiple container directoies in genome dir path to gfServer diff --git src/inc/gfWebLib.h src/inc/gfWebLib.h index 3e80bf8..e26ab34 100644 --- src/inc/gfWebLib.h +++ src/inc/gfWebLib.h @@ -1,27 +1,27 @@ /* gfWebLib - stuff shared by gfWebBlat and gfWebPcr - little web programs * that query gfServer in different ways. */ struct gfServerAt /* A gfServer with an in-memory index. */ { struct gfServerAt *next; char *host; /* IP Address of machine running server. */ char *port; /* IP Port on host. */ char *seqDir; /* Where associated sequence lives. */ char *name; /* Name user sees. */ - char *dynGenome; /* Genome name for dynamic server */ + char *dynGenomeDir; /* Genome name for dynamic server */ }; struct gfServerAt *gfWebFindServer(struct gfServerAt *serverList, char *varName); /* Find active server (that matches contents of CGI variable varName). */ struct gfWebConfig /* A parsed out configuration file. */ { char *company; /* Company name if any. */ char *background; /* Web page background if any. */ struct gfServerAt *serverList; /* List of servers. */ struct gfServerAt *transServerList; /* List of translated servers. */ char *tempDir; /* Where to put temporary files. */ };