- 31 Jan, 1998 1 commit
-
-
Marc G. Fournier authored
I haven't had final confirmation from Peter yet, but the attached patch needs to be applied for the Beta otherwise password and crypt authentication just won't work. It puts back the loop in libpq and also fixes a couple of problems with maintaining compatability with pre-6.3 drivers.
-
- 27 Jan, 1998 2 commits
-
-
Bruce Momjian authored
(void) change for aix and hp compilers. protocol cleanup.
-
Bruce Momjian authored
-
- 26 Jan, 1998 1 commit
-
-
Marc G. Fournier authored
I've completed the patch to fix the protocol and authentication issues I was discussing a couple of weeks ago. The particular changes are: - the protocol has a version number - network byte order is used throughout - the pg_hba.conf file is used to specify what method is used to authenticate a frontend (either password, ident, trust, reject, krb4 or krb5) - support for multiplexed backends is removed - appropriate changes to man pages - the -a switch to many programs to specify an authentication service no longer has any effect - the libpq.so version number has changed to 1.1 The new backend still supports the old protocol so old interfaces won't break.
-
- 25 Jan, 1998 1 commit
-
-
Bruce Momjian authored
-
- 19 Dec, 1997 1 commit
-
-
Marc G. Fournier authored
Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :)
-
- 15 Dec, 1997 1 commit
-
-
Bruce Momjian authored
-
- 11 Dec, 1997 1 commit
-
-
Bruce Momjian authored
-
- 09 Dec, 1997 1 commit
-
-
Marc G. Fournier authored
...malloc/free -> palloc/pfree ...fopen/fclose -> AllocateFile/FreeFile
-
- 07 Dec, 1997 1 commit
-
-
Marc G. Fournier authored
Add code to set DATADIR in postmaster.c if -D is used
-
- 04 Dec, 1997 1 commit
-
-
Marc G. Fournier authored
An extension to the code to allow for a pg_password authentication database that is *seperate* from the system password file
-
- 17 Nov, 1997 1 commit
-
-
Marc G. Fournier authored
From: Bryan Henderson <bryanh@giraffe.netgate.net>
-
- 10 Nov, 1997 1 commit
-
-
Bruce Momjian authored
-
- 07 Nov, 1997 1 commit
-
-
Bruce Momjian authored
-
- 25 Oct, 1997 1 commit
-
-
Bruce Momjian authored
-
- 18 Sep, 1997 1 commit
-
-
Bruce Momjian authored
-
- 08 Sep, 1997 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
-
- 07 Sep, 1997 1 commit
-
-
Bruce Momjian authored
-
- 25 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 19 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 12 Aug, 1997 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Fix pgproc names over 15 chars in output. Add strNcpy() function. remove some (void) casts that are unnecessary.
-
- 03 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 30 Jul, 1997 2 commits
-
-
Marc G. Fournier authored
so, add a check that basically says if it isn't defined, set it to 256...
-
Marc G. Fournier authored
MAXHOSTNAMELEN is defined. For some reason, my 2.5.1 Solaris box at work fails on that check...
-
- 25 May, 1997 1 commit
-
-
Marc G. Fournier authored
These are undocumented in the man pages though...should they be removed? Reported by: "A. Duursma" <it@portsite.nl>
-
- 24 Apr, 1997 1 commit
-
-
Marc G. Fournier authored
postgres backend processes end up as so called zombies. It seems that only Linux a.out (libc.4.6.27) systems are affected. By: Wolfgang Roth <roth@statistik.uni-mannheim.de>
-
- 12 Mar, 1997 1 commit
-
-
Marc G. Fournier authored
Subject: [HACKERS] password authentication This patch adds support for plaintext password authentication. To use it, you add a line like host all 0.0.0.0 0.0.0.0 password pg_pwd.conf to your pg_hba.conf, where 'pg_pwd.conf' is the name of a file containing the usernames and password hashes in the format of the first two fields of a Unix /etc/passwd file. (Of course, you can use a specific database name or IP instead.) Then, to connect with a password through libpq, you use the PQconnectdb() function, specifying the "password=" tag in the connect string and also adding the tag "authtype=password". I also added a command-line switch '-u' to psql that tells it to prompt for a username and password and use password authentication.
-
- 02 Mar, 1997 1 commit
-
-
Bruce Momjian authored
-
- 19 Feb, 1997 1 commit
-
-
Bruce Momjian authored
-
- 18 Feb, 1997 1 commit
-
-
Bruce Momjian authored
-
- 14 Feb, 1997 1 commit
-
-
Bruce Momjian authored
-
- 13 Feb, 1997 1 commit
-
-
Marc G. Fournier authored
Replaced NEED_STRDUP by !HAVE_STRDUP
-
- 06 Feb, 1997 2 commits
-
-
Bruce Momjian authored
-
Marc G. Fournier authored
-
- 27 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 26 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
from a #define to a run-time option '-e' Man page was updated to reflect new option
-
- 24 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
-