diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-09-27 00:22:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-09-27 00:22:04 +0000 |
commit | 756409c4cffe5a4ad6ef965c7cf14eecc3bf5760 (patch) | |
tree | 1bbd17925a97ce9935231b2b3e034418d27dfad3 /nscd/nscd-client.h | |
parent | 6e42b0f1ac30da9806b6917378bf19335328096d (diff) | |
download | glibc-756409c4cffe5a4ad6ef965c7cf14eecc3bf5760.tar glibc-756409c4cffe5a4ad6ef965c7cf14eecc3bf5760.tar.gz glibc-756409c4cffe5a4ad6ef965c7cf14eecc3bf5760.tar.bz2 glibc-756409c4cffe5a4ad6ef965c7cf14eecc3bf5760.zip |
Update.
1999-09-26 Thorsten Kukuk <kukuk@suse.de>
* nscd/connections.c: Invalidate caches on request.
* nscd/nscd-client.h: Add INVALIDATE to request_type.
* nscd/nscd.c: Add invalidate cache option.
* nscd/nscd.conf: Change log directory to /var/log (FHS).
Diffstat (limited to 'nscd/nscd-client.h')
-rw-r--r-- | nscd/nscd-client.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nscd/nscd-client.h b/nscd/nscd-client.h index 0c52f91c36..33c4845aee 100644 --- a/nscd/nscd-client.h +++ b/nscd/nscd-client.h @@ -1,6 +1,6 @@ -/* Copyright (c) 1998 Free Software Foundation, Inc. +/* Copyright (c) 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998. + Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -50,7 +50,8 @@ typedef enum LASTDBREQ = GETHOSTBYADDRv6, SHUTDOWN, /* Shut the server down. */ GETSTAT, /* Get the server statistic. */ - LASTREQ, + INVALIDATE, /* Invalidate one special cache. */ + LASTREQ } request_type; |