Mercurial > noffle
comparison src/outgoing.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 | 2842f50feb55 |
children | fed1334d766b |
comparison
equal
deleted
inserted
replaced
53:9f3a4eccce32 | 54:125d79c9e586 |
---|---|
1 /* | 1 /* |
2 outgoing.c | 2 outgoing.c |
3 | 3 |
4 $Id: outgoing.c 49 2000-05-05 21:45:56Z uh1763 $ | 4 $Id: outgoing.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 | 9 #endif |
14 #include <dirent.h> | 14 #include <dirent.h> |
15 #include <errno.h> | 15 #include <errno.h> |
16 #include <fcntl.h> | 16 #include <fcntl.h> |
17 #include <sys/types.h> | 17 #include <sys/types.h> |
18 #include <sys/stat.h> | 18 #include <sys/stat.h> |
19 | |
20 #if TIME_WITH_SYS_TIME | |
21 #include <sys/time.h> | |
19 #include <time.h> | 22 #include <time.h> |
23 #else | |
24 #if HAVE_SYS_TIME_H | |
25 #include <sys/time.h> | |
26 #else | |
27 #include <time.h> | |
28 #endif | |
29 #endif | |
30 | |
20 #include <unistd.h> | 31 #include <unistd.h> |
21 #include "configfile.h" | 32 #include "configfile.h" |
22 #include "log.h" | 33 #include "log.h" |
23 #include "util.h" | 34 #include "util.h" |
35 #include "portable.h" | |
24 | 36 |
25 struct Outgoing | 37 struct Outgoing |
26 { | 38 { |
27 DIR *dir; | 39 DIR *dir; |
28 Str serv; | 40 Str serv; |