Mercurial > noffle
view src/server.h @ 257:087e7039b569 noffle
[svn] * src/database.c: DB_compact() now does nothing. It was calling
gdbm_reorganize() which did rebuild on the database, copying it
to a new database and renaming. This now has an explicit function,
Db_rebuild(), and you don't want to chew disc space like this during
a routine expire.
author | bears |
---|---|
date | Wed, 26 Jun 2002 14:28:35 +0100 |
parents | 7ba337dafb2c |
children |
line wrap: on
line source
/* server.h Be NNTP server on stdin/stdout. $Id: server.h 260 2001-02-25 23:29:50Z bears $ */ #ifndef SERV_H #define SERV_H #if HAVE_CONFIG_H #include <config.h> #endif void Server_run( void ); void Server_flushCache( void ); #endif