Roxen.git/
server/
base_server/
roxen.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2002-04-24
2002-04-24 15:31:24 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f74e25a1d4cb43bffdf096918dbd0bfafeaa9a67 (
12
lines) (+
10
/-
2
)
[
Show
|
Annotate
]
Branch:
5.2
Improved suicide handling.
Rev: server/base_server/roxen.pike:1.792
6:
// Per Hedbor, Henrik Grubbström, Pontus Hagland, David Hedbor and others. // ABS and suicide systems contributed freely by Francesco Chemolli
-
constant cvs_version="$Id: roxen.pike,v 1.
791
2002/04/
23
16
:
20
:
51
grubba Exp $";
+
constant cvs_version="$Id: roxen.pike,v 1.
792
2002/04/
24
15
:
31
:
24
grubba Exp $";
// The argument cache. Used by the image cache. ArgCache argcache;
1223:
if (!path && sizeof (Array.uniq (values (urls)->path)) == 1) path = values (urls)[0]->path; sorted_urls -= ({_name});
+
#ifdef PORT_DEBUG
+
report_debug("Protocol(%s://%s:%d/)->unref(%O): refs:%d\n",
+
name, ip, port, _name, refs);
+
#endif /* PORT_DEBUG */
if( !--refs ) { if (port_obj) { destruct(port_obj);
4365:
->get_next( query("last_suicide") ); if (next >= 0 && next <= time(1)) { report_notice("Auto Restart triggered.\n");
+
set( "last_suicide", time(1) );
+
save( );
restart(); } else { call_out(check_commit_suicide, next - time(1));
4383:
if (query("suicide_engage")) { int next = getvar("suicide_schedule") ->get_next( query("last_suicide") );
-
if( next >= 0 && next <= time() )
+
if(
!query("last_suicide") || (
next >= 0 && next <= time()
)
)
{ set( "last_suicide", time() );
-
+
save( );
} } }