Mercurial > noffle
comparison src/server.c @ 54:125d79c9e586 noffle
[svn] * src/client.c, src/configfile.c, src/content.c, src/control.c,
src/database.c, src/dynamicstring.c, src/fetch.c, src/fetchlist.c,
src/group.c, src/itemlist.c, src/lock.c, src/log.c, src/noffle.c,
src/online.c, src/outgoing.c, src/over.c, src/post.c, src/protocol.c,
src/pseudo.c, src/request.c, src/server.c, src/util.c:
Added portable.h #include.
* src/client.h, src/database.h, src/fetch.c, src/group.h, src/lock.c,
src/outgoing.c, src/over.c, src/over.h, src/pseudo.c, src/server.c,
src/util.c, src/util.h: Added some #ifdefs to correctly include either
time.h or sys/time.h or both, depending on which are found.
* src/noffle.c: Changed the return-type of the signal-handlers bugReport()
and logSignal() to RETSIGTYPE, which is either void or int, depending on
the system you compile on (autoconf #defines the RETSIGTYPE).
author | uh1763 |
---|---|
date | Tue, 09 May 2000 23:28:38 +0100 |
parents | 5ecb646acf97 |
children | adf0af5152f7 |
comparison
equal
deleted
inserted
replaced
53:9f3a4eccce32 | 54:125d79c9e586 |
---|---|
1 /* | 1 /* |
2 server.c | 2 server.c |
3 | 3 |
4 $Id: server.c 55 2000-05-06 16:56:50Z bears $ | 4 $Id: server.c 60 2000-05-09 22:28:38Z uh1763 $ |
5 */ | 5 */ |
6 | 6 |
7 #if HAVE_CONFIG_H | 7 #if HAVE_CONFIG_H |
8 #include <config.h> | 8 #include <config.h> |
9 #endif | |
10 | |
11 #if TIME_WITH_SYS_TIME | |
12 #include <sys/time.h> | |
13 #include <time.h> | |
14 #else | |
15 #if HAVE_SYS_TIME_H | |
16 #include <sys/time.h> | |
17 #else | |
18 #include <time.h> | |
19 #endif | |
9 #endif | 20 #endif |
10 | 21 |
11 #include <stdio.h> | 22 #include <stdio.h> |
12 #include "server.h" | 23 #include "server.h" |
13 #include <ctype.h> | 24 #include <ctype.h> |
14 #include <signal.h> | 25 #include <signal.h> |
15 #include <stdarg.h> | 26 #include <stdarg.h> |
16 #include <sys/time.h> | |
17 #include <sys/types.h> | 27 #include <sys/types.h> |
18 #include <time.h> | |
19 #include <unistd.h> | 28 #include <unistd.h> |
20 #include "client.h" | 29 #include "client.h" |
21 #include "common.h" | 30 #include "common.h" |
22 #include "configfile.h" | 31 #include "configfile.h" |
23 #include "content.h" | 32 #include "content.h" |
37 #include "protocol.h" | 46 #include "protocol.h" |
38 #include "pseudo.h" | 47 #include "pseudo.h" |
39 #include "request.h" | 48 #include "request.h" |
40 #include "util.h" | 49 #include "util.h" |
41 #include "wildmat.h" | 50 #include "wildmat.h" |
51 #include "portable.h" | |
42 | 52 |
43 struct | 53 struct |
44 { | 54 { |
45 Bool running; | 55 Bool running; |
46 int artPtr; | 56 int artPtr; |