comparison src/fetch.c @ 197:24d4cd032da5 noffle

[svn] * AUTHORS,INSTALL,NEWS,README,TODO,docs/NOTES,src/client.c,src/protocol.c, src/protocol.h,src/server.c: Merge with latest 1.0 branch. I do not intend to do any further merges from the 1.0 branch; future changes to 1.0 should be carried over by hand if necessary. * src/configfile.c,src/content.c,src/control.c,src/database.c, src/dynamicstring.c,src/fetch.c,src/filter.c,src/group.c, src/itemlist.c,src/lock.c,src/outgoing.c,src/over.c,src/post.c, src/pseudo.c,src/request.c,src/util.c: Minor includes rearrangement.
author bears
date Wed, 31 Oct 2001 11:44:53 +0000
parents 021d145e34e9
children ffb1848a39db
comparison
equal deleted inserted replaced
196:60a70c16d79c 197:24d4cd032da5
1 /* 1 /*
2 fetch.c 2 fetch.c
3 3
4 $Id: fetch.c 312 2001-10-22 13:41:43Z bears $ 4 $Id: fetch.c 316 2001-10-31 11:44:53Z bears $
5 */ 5 */
6 6
7 #if HAVE_CONFIG_H 7 #if HAVE_CONFIG_H
8 #include <config.h> 8 #include <config.h>
9 #endif 9 #endif
10 10
11 #include <stdio.h> 11 #include <stdio.h>
12 #include "fetch.h"
13 #include <errno.h> 12 #include <errno.h>
14 13
15 #if TIME_WITH_SYS_TIME 14 #if TIME_WITH_SYS_TIME
16 #include <sys/time.h> 15 #include <sys/time.h>
17 #include <time.h> 16 #include <time.h>
26 #include <signal.h> 25 #include <signal.h>
27 #include "client.h" 26 #include "client.h"
28 #include "configfile.h" 27 #include "configfile.h"
29 #include "content.h" 28 #include "content.h"
30 #include "dynamicstring.h" 29 #include "dynamicstring.h"
30 #include "fetch.h"
31 #include "fetchlist.h" 31 #include "fetchlist.h"
32 #include "request.h" 32 #include "request.h"
33 #include "group.h" 33 #include "group.h"
34 #include "lock.h" 34 #include "lock.h"
35 #include "log.h" 35 #include "log.h"