Remove PQunixsocket, per Peter's recommendation. PQhost shows the socket directory.
authorBruce Momjian
Tue, 28 Nov 2000 06:53:33 +0000 (06:53 +0000)
committerBruce Momjian
Tue, 28 Nov 2000 06:53:33 +0000 (06:53 +0000)
doc/src/sgml/libpq.sgml
src/interfaces/libpq/fe-connect.c

index 12da7edcca105e402cb0649a585412e09b643f65..05c5e418c93b6701693526eae9958b6f0e032697 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -564,16 +564,6 @@ char *PQport(const PGconn *conn)
 
 
 
-
-
-PQunixsocket
-         Returns the directory of the Unix-domain socket of the connection.
-
-char *PQunixsocket(const PGconn *conn)
-
-
-
-
 
 
 PQtty
index 638b039bf941f4afa9ad52fb8a0366e38c8e9179..3532eb4616463b8da9537db85c950abc9abaee35 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.149 2000/11/27 21:12:25 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.150 2000/11/28 06:53:33 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -2627,14 +2627,6 @@ PQport(const PGconn *conn)
    return conn->pgport;
 }
 
-char *
-PQunixsocket(const PGconn *conn)
-{
-   if (!conn)
-       return (char *) NULL;
-   return conn->pgunixsocket;
-}
-
 char *
 PQtty(const PGconn *conn)
 {