annotate src/portable.h @ 191:28488e0e3630 noffle

[svn] * src/group.h,src/group.c,src/noffle.c,src/server.c: Grp_setLastAccess is only ever called with last param as time(NULL), so remove it and call time() inside the implementation of Grp_setLastAccess. * src/client.c,src/group.h,src/group.c,src/noffle.c,src/post.c: Groups are automatically unsubscribed when the last access to the group is older than a particular threshold. However, for very low traffic groups, the last access may exceed the threshold simply because there has been no new article posted. In this case, rather than unsubscribe, update the group last access time. This means that groups are now only unsubscribed if the last access exceeds the threshold AND articles have arrived in the group since. Add Grp_setLastPostTime() to track the last time an article arrived in the group.
author bears
date Sat, 20 Oct 2001 14:23:46 +0100
parents c7df2cc65cc1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
55
uh1763
parents:
diff changeset
1 /*
uh1763
parents:
diff changeset
2 portable.h
uh1763
parents:
diff changeset
3
uh1763
parents:
diff changeset
4 Compatibility checks and fallback-functions.
uh1763
parents:
diff changeset
5
74
c7df2cc65cc1 [svn] Introduce UNUSED(x) macro
bears
parents: 55
diff changeset
6 $Id: portable.h 80 2000-05-13 15:36:35Z bears $
55
uh1763
parents:
diff changeset
7 */
uh1763
parents:
diff changeset
8
uh1763
parents:
diff changeset
9 #ifndef PORTABLE_H
uh1763
parents:
diff changeset
10 #define PORTABLE_H /* To stop multiple inclusions. */
uh1763
parents:
diff changeset
11
uh1763
parents:
diff changeset
12
uh1763
parents:
diff changeset
13 #if HAVE_CONFIG_H
uh1763
parents:
diff changeset
14 #include <config.h>
uh1763
parents:
diff changeset
15 #endif
uh1763
parents:
diff changeset
16
uh1763
parents:
diff changeset
17 #if !defined(HAVE_VSNPRINTF) && defined(HAVE___VSNPRINTF)
uh1763
parents:
diff changeset
18 #undef vsnprintf
uh1763
parents:
diff changeset
19 #define vsnprintf __vsnprintf
uh1763
parents:
diff changeset
20 #define HAVE_VSNPRINTF
uh1763
parents:
diff changeset
21 #endif
uh1763
parents:
diff changeset
22
uh1763
parents:
diff changeset
23 /* This is *not* good, because vsprintf() doesn't do any bounds-checking */
uh1763
parents:
diff changeset
24 #if !defined(HAVE_VSNPRINTF) && !defined(HAVE___VSNPRINTF)
uh1763
parents:
diff changeset
25 #define vsnprintf(c, len, fmt, args) vsprintf(c, fmt, args)
uh1763
parents:
diff changeset
26 #define HAVE_VSNPRINTF
uh1763
parents:
diff changeset
27 #endif
uh1763
parents:
diff changeset
28
uh1763
parents:
diff changeset
29 #if !defined(HAVE_SNPRINTF) && defined(HAVE___SNPRINTF)
uh1763
parents:
diff changeset
30 #undef snprintf
uh1763
parents:
diff changeset
31 #define snprintf __snprintf
uh1763
parents:
diff changeset
32 #define HAVE_SNPRINTF
uh1763
parents:
diff changeset
33 #endif
uh1763
parents:
diff changeset
34
74
c7df2cc65cc1 [svn] Introduce UNUSED(x) macro
bears
parents: 55
diff changeset
35 /* Indicate deliberately unused argument. Possibly compiler specific. */
c7df2cc65cc1 [svn] Introduce UNUSED(x) macro
bears
parents: 55
diff changeset
36 #define UNUSED(x) { ( void ) x; }
55
uh1763
parents:
diff changeset
37
uh1763
parents:
diff changeset
38 #endif
uh1763
parents:
diff changeset
39