#include "common.h"#include "errabort.h"#include "genoFind.h"#include "net.h"Include dependency graph for gfNet.c:

Go to the source code of this file.
Functions | |
| int | gfConnect (char *hostName, char *portName) |
Variables | |
| static char const | rcsid [] = "$Id: gfNet.c,v 1.8 2004/06/01 16:49:03 kent Exp $" |
| int gfConnect | ( | char * | hostName, | |
| char * | portName | |||
| ) |
Definition at line 10 of file gfNet.c.
References errnoAbort(), and netConnect().
Referenced by doBlat(), gfClient(), and gfPcrGetRanges().
00012 { 00013 /* Connect to server. */ 00014 int sd = netConnect(hostName, atoi(portName)); 00015 if (sd < 0) 00016 { 00017 errnoAbort("Sorry, the BLAT/iPCR server seems to be down. Please try " 00018 "again later."); 00019 } 00020 return sd; 00021 }
Here is the call graph for this function:

Here is the caller graph for this function:

char const rcsid[] = "$Id: gfNet.c,v 1.8 2004/06/01 16:49:03 kent Exp $" [static] |
1.5.2