e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/gfNet.c src/lib/gfNet.c
index 2c9e04f..e7fc17f 100644
--- src/lib/gfNet.c
+++ src/lib/gfNet.c
@@ -1,21 +1,24 @@
 /* gfNet.c - Network dependent stuff for blat server. */
 
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "errabort.h"
 #include "genoFind.h"
 #include "net.h"
 
 
 int gfConnect(char *hostName, char *portName)
 /* Start connection with server. */
 {
 /* Connect to server. */
 int sd = netConnect(hostName, atoi(portName));
 if (sd < 0)
     {
     errnoAbort("Sorry, the BLAT/iPCR server seems to be down.  Please try "
                "again later.");
     }
 return sd;
 }