diff options
Diffstat (limited to 'src/include/libpq/libpq-be.h')
-rw-r--r-- | src/include/libpq/libpq-be.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/include/libpq/libpq-be.h b/src/include/libpq/libpq-be.h index f6e8fed345c..54bf5193838 100644 --- a/src/include/libpq/libpq-be.h +++ b/src/include/libpq/libpq-be.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/libpq/libpq-be.h,v 1.47 2004/08/29 04:13:07 momjian Exp $ + * $PostgreSQL: pgsql/src/include/libpq/libpq-be.h,v 1.48 2004/08/29 05:06:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -50,8 +50,8 @@ typedef struct Port ProtocolVersion proto; /* FE/BE protocol version */ SockAddr laddr; /* local addr (postmaster) */ SockAddr raddr; /* remote addr (client) */ - char *remote_host; /* name (or ip addr) of remote host */ - char *remote_port; /* text rep of remote port */ + char *remote_host; /* name (or ip addr) of remote host */ + char *remote_port; /* text rep of remote port */ CAC_state canAcceptConnections; /* postmaster connection status */ /* @@ -74,12 +74,13 @@ typedef struct Port char cryptSalt[2]; /* Password salt */ /* - * Information that really has no business at all being in struct Port, - * but since it gets used by elog.c in the same way as database_name - * and other members of this struct, we may as well keep it here. + * Information that really has no business at all being in struct + * Port, but since it gets used by elog.c in the same way as + * database_name and other members of this struct, we may as well keep + * it here. */ - const char *commandTag; /* current command tag */ - struct timeval session_start; /* for session duration logging */ + const char *commandTag; /* current command tag */ + struct timeval session_start; /* for session duration logging */ /* * SSL structures |