1. 10 11月, 1997 1 次提交
  2. 08 11月, 1997 1 次提交
  3. 09 9月, 1997 1 次提交
  4. 08 9月, 1997 1 次提交
  5. 07 9月, 1997 1 次提交
  6. 27 8月, 1997 1 次提交
  7. 18 8月, 1997 1 次提交
  8. 13 8月, 1997 1 次提交
  9. 13 3月, 1997 1 次提交
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · 3a7c93e7
      Marc G. Fournier 提交于
      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.
      3a7c93e7
  10. 14 1月, 1997 1 次提交
    • B
      There are two prototypes for inet_aton, one in include/inet_aton.h, and · 42efa28c
      Bruce Momjian 提交于
      another one in Solaris' port-protos.h.
      
      The following patch will bring inet_aton's prototype into scope for
      Ultrix to silence a compilation warning.
      
      If the intention is to have inet_aton's prototype in its own header
      filer, the declaration in Solaris' port-protos.h should be removed.
      If the declaration in port-protos.h is deemed to be the correct
      place, a declaration should be added in Ultrix' port-protos.h
      
      regards
      Erik Bertelsen
      42efa28c
  11. 11 1月, 1997 1 次提交
    • B
      I found the following bugs in the version 6.0 (dated 961229). · 90ff767d
      Bruce Momjian 提交于
      At least the first two should be fixed before the final release of 6.0.
      
      1)      There is a mismatch between the type declared in the catalog for
              the input/output attributes of pg_type and the actual type of
              values stored in the table.  The type of typinput, typoutput,
              typsend and typreceive are declared oid (26) while the values are
              regproc (24).  The error was there also in previous versions but
              nobody noticed it until an Assert has been added in ExecEvalVar.
              The effect is that it is now impossible to replace the typoutput
              of existing data types with new procs.
      
      2)      The identd hba fails after the first time because the data read
              from the identd socket is not zero-terminated and strlen reports
              an incorrect length if the stack contains garbage, which usually
              happens after the first connection has been made.
      
      3)      The new initdb wants to create itself the data directory. This
              implies that the parent directory must be writable by postgres and
              this may not always be desirable.  A better solution would be to
              allow the directory to be created by root and then filled by initdb.
              It would also nice to have some reasonable default for PGLIB and
              PGDATA like the previous version did.  This applies also to the
              postmaster executable.
      90ff767d
  12. 27 11月, 1996 1 次提交
  13. 16 11月, 1996 1 次提交
  14. 10 11月, 1996 1 次提交
  15. 06 11月, 1996 2 次提交
  16. 03 11月, 1996 4 次提交
  17. 31 10月, 1996 1 次提交
  18. 28 10月, 1996 1 次提交
  19. 14 10月, 1996 1 次提交
  20. 12 10月, 1996 1 次提交