diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-06-20 18:07:56 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-06-20 18:07:56 +0000 |
commit | 9b4bfbdc2cd74342d9febb74c93acad1d4de84ca (patch) | |
tree | 0239cbb8e885f8420b5ec967c928f4e6fdc5bed1 /src/include | |
parent | 588463a449e70aff33d799b5c9475ab94fbdf4c9 (diff) |
Handle reading of startup packet and authentication exchange after forking
a new postmaster child process. This should eliminate problems with
authentication blocking (e.g., ident, SSL init) and also reduce problems
with the accept queue filling up under heavy load.
The option to send elog output to a different file per backend (postgres -o)
has been disabled for now because the initialization would have to happen
in a different order and it's not clear we want to keep this anyway.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/libpq/auth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/auth.h b/src/include/libpq/auth.h index 649823f0e76..df973df555e 100644 --- a/src/include/libpq/auth.h +++ b/src/include/libpq/auth.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: auth.h,v 1.16 2001/03/22 04:00:47 momjian Exp $ + * $Id: auth.h,v 1.17 2001/06/20 18:07:56 petere Exp $ * *------------------------------------------------------------------------- */ @@ -21,7 +21,7 @@ *---------------------------------------------------------------- */ -void be_recvauth(Port *port); +void ClientAuthentication(Port *port); #define PG_KRB4_VERSION "PGVER4.1" /* at most KRB_SENDAUTH_VLEN chars */ #define PG_KRB5_VERSION "PGVER5.1" |