diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-08-15 18:42:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-08-15 18:42:16 +0000 |
commit | 38bb1abcda9119957e836f731a1cfea6d2079499 (patch) | |
tree | 8f61d7b57cc171d8307a81dc7c4b7a382be58f43 /src/include/miscadmin.h | |
parent | 397f65d102b7f9998411f2a8c2d1c66dfe712320 (diff) | |
download | postgresql-38bb1abcda9119957e836f731a1cfea6d2079499.tar.gz postgresql-38bb1abcda9119957e836f731a1cfea6d2079499.zip |
Use MD5 for wire protocol encryption for >= 7.2 client/server.
Allow pg_shadow to be MD5 encrypted.
Add ENCRYPTED/UNENCRYPTED option to CREATE/ALTER user.
Add password_encryption postgresql.conf option.
Update wire protocol version to 2.1.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index c3afaf89eca..89e0670911b 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.88 2001/08/05 02:06:50 tgl Exp $ + * $Id: miscadmin.h,v 1.89 2001/08/15 18:42:15 momjian Exp $ * * NOTES * some of the information in this file should be moved to @@ -171,8 +171,10 @@ extern bool enableFsync; extern bool allowSystemTableMods; extern int SortMem; -/* a few postmaster startup options are exported here so the - configuration file processor has access to them */ +/* + * A few postmaster startup options are exported here so the + * configuration file processor can access them. + */ extern bool NetServer; extern bool EnableSSL; |