src/lib/udc.c 1.9
1.9 2009/02/11 21:57:21 galt
moving some udc http declarations to .h file so I can call them for testing
Index: src/lib/udc.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/lib/udc.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 4 -r1.8 -r1.9
--- src/lib/udc.c 11 Feb 2009 01:36:51 -0000 1.8
+++ src/lib/udc.c 11 Feb 2009 21:57:21 -0000 1.9
@@ -36,15 +36,8 @@
#define udcMaxBytesPerRemoteFetch (udcBlockSize * 32)
/* Very large remote reads are broken down into chunks this size. */
-struct udcRemoteFileInfo
-/* Information about a remote file. */
- {
- bits64 updateTime; /* Last update in seconds since 1970 */
- bits64 size; /* Remote file size */
- };
-
typedef int (*UdcDataCallback)(char *url, bits64 offset, int size, void *buffer);
/* Type for callback function that fetches file data. */
typedef boolean (*UdcInfoCallback)(char *url, struct udcRemoteFileInfo *retInfo);