]> granicus.if.org Git - postgresql/commitdiff
Revert "Add libpq function PQhostaddr()."
authorNoah Misch <noah@leadboat.com>
Sat, 29 Nov 2014 17:31:21 +0000 (12:31 -0500)
committerNoah Misch <noah@leadboat.com>
Sat, 29 Nov 2014 17:31:21 +0000 (12:31 -0500)
This reverts commit 9f80f4835a55a1cbffcda5d23a617917f3286c14.  The
function returned the raw value of a connection parameter, a task served
by PQconninfo().  The next commit will reimplement the psql \conninfo
change that way.  Back-patch to 9.4, where that commit first appeared.

doc/src/sgml/libpq.sgml
src/bin/psql/command.c
src/interfaces/libpq/exports.txt
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/libpq-fe.h

index e23e91d9bb34021461ab7c51f6dad1b3674998e7..d829a4b9d550b9d759db2540d6c37db26a441b43 100644 (file)
@@ -1467,24 +1467,6 @@ char *PQhost(const PGconn *conn);
      </listitem>
     </varlistentry>
 
-    <varlistentry id="libpq-pqhostaddr">
-     <term>
-      <function>PQhostaddr</function>
-      <indexterm>
-       <primary>PQhostaddr</primary>
-      </indexterm>
-     </term>
-
-     <listitem>
-      <para>
-       Returns the server numeric IP address of the connection.
-<synopsis>
-char *PQhostaddr(const PGconn *conn);
-</synopsis>
-      </para>
-     </listitem>
-    </varlistentry>
-
     <varlistentry id="libpq-pqport">
      <term>
       <function>PQport</function>
index 62ea0440efad393b512c483de47fe12b8d74226b..eb281a3dcbce50f251cd4184078f4c98b9105f92 100644 (file)
@@ -302,7 +302,7 @@ exec_command(const char *cmd,
        else if (strcmp(cmd, "conninfo") == 0)
        {
                char       *db = PQdb(pset.db);
-               char       *host = (PQhostaddr(pset.db) != NULL) ? PQhostaddr(pset.db) : PQhost(pset.db);
+               char       *host = PQhost(pset.db);
 
                if (db == NULL)
                        printf(_("You are currently not connected to a database.\n"));
index cbb6e36c119d8bc178ff42ddfb3c57243c6ec54f..93da50df31143713f38537fbe667e5d7fe48fc94 100644 (file)
@@ -165,4 +165,3 @@ lo_lseek64                162
 lo_tell64                 163
 lo_truncate64             164
 PQconninfo                165
-PQhostaddr                166
index 703cbac37ae791e9adb7c55ba045d272888bc62c..3af222b5a0924acb3959bffb1af5a04c3edea94f 100644 (file)
@@ -5340,14 +5340,6 @@ PQhost(const PGconn *conn)
        }
 }
 
-char *
-PQhostaddr(const PGconn *conn)
-{
-       if (!conn)
-               return NULL;
-       return conn->pghostaddr;
-}
-
 char *
 PQport(const PGconn *conn)
 {
index 80591728a0fe85d6ec3ba055c6890ce5e0acf271..b81dc16285f59ab60286cafefc532195a73635b2 100644 (file)
@@ -301,7 +301,6 @@ extern char *PQdb(const PGconn *conn);
 extern char *PQuser(const PGconn *conn);
 extern char *PQpass(const PGconn *conn);
 extern char *PQhost(const PGconn *conn);
-extern char *PQhostaddr(const PGconn *conn);
 extern char *PQport(const PGconn *conn);
 extern char *PQtty(const PGconn *conn);
 extern char *PQoptions(const PGconn *conn);