Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: PQhost() Returns NULL on Connection



On Apr 26 02:08, Keary Suska wrote:
> If so, is there a way to get the domain socket used?

Below is some source code snippet I thought can help you.

src/interfaces/libpq/fe-connect.c
777 #ifdef HAVE_UNIX_SOCKETS
778         /* pghostaddr and pghost are NULL, so use Unix domain socket */
779         node = NULL;
780         hint.ai_family = AF_UNIX;
781         UNIXSOCK_PATH(portstr, portnum, conn->pgunixsocket);
782 #else

src/include/libpq/pqcomm.h
77 /* Configure the UNIX socket location for the well known port. */
78 
79 #define UNIXSOCK_PATH(path,port,defpath) \
80         snprintf(path, sizeof(path), "%s/.s.PGSQL.%d", \
81                 ((defpath) && *(defpath) != '\0') ? (defpath) : \
82                 DEFAULT_PGSOCKET_DIR, \
83                 (port))


Regards.



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group