87a162ccdc3ac94525fc1011dec5bc10e2cf2171 markd Thu Jul 2 16:12:57 2020 -0700 web blat working diff --git src/inc/gfWebLib.h src/inc/gfWebLib.h index 0ba8990..3e80bf8 100644 --- src/inc/gfWebLib.h +++ src/inc/gfWebLib.h @@ -1,26 +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 */ }; 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. */ };