Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
aead4966
Commit
aead4966
authored
Nov 15, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename show_source_port to log_source_port.
parent
559b6c7c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+2
-2
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+3
-3
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-1
src/include/tcop/tcopprot.h
src/include/tcop/tcopprot.h
+2
-2
No files found.
doc/src/sgml/runtime.sgml
View file @
aead4966
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.15
2 2002/11/15 00:47:22
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.15
3 2002/11/15 01:40:15
momjian Exp $
-->
<Chapter Id="runtime">
...
...
@@ -1124,7 +1124,7 @@ env PGOPTIONS='-c geqo=off' psql
</varlistentry>
<varlistentry>
<term><varname>
SHOW
_SOURCE_PORT</varname> (<type>boolean</type>)</term>
<term><varname>
LOG
_SOURCE_PORT</varname> (<type>boolean</type>)</term>
<listitem>
<para>
Shows the outgoing port number of the connecting host in the
...
...
src/backend/postmaster/postmaster.c
View file @
aead4966
...
...
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.29
4 2002/11/14 23:53:27
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.29
5 2002/11/15 01:40:18
momjian Exp $
*
* NOTES
*
...
...
@@ -200,7 +200,7 @@ int AuthenticationTimeout = 60;
int
CheckPointTimeout
=
300
;
bool
HostnameLookup
;
/* for ps display */
bool
ShowPortNumber
;
bool
LogSourcePort
;
bool
Log_connections
=
false
;
bool
Db_user_namespace
=
false
;
...
...
@@ -2119,7 +2119,7 @@ DoBackend(Port *port)
elog
(
LOG
,
"connection received: host=%s port=%hu"
,
remote_host
,
remote_port
);
if
(
ShowPortNumber
)
if
(
LogSourcePort
)
{
/* modify remote_host for use in ps status */
int
slen
=
strlen
(
remote_host
)
+
10
;
...
...
src/backend/utils/misc/guc.c
View file @
aead4966
...
...
@@ -5,7 +5,7 @@
* command, configuration file, and command line options.
* See src/backend/utils/misc/README for more information.
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10
3 2002/11/15 01:26:0
9 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10
4 2002/11/15 01:40:1
9 momjian Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
...
@@ -480,7 +480,7 @@ static struct config_bool
false
,
NULL
,
NULL
},
{
{
"
show_source_port"
,
PGC_SIGHUP
},
&
ShowPortNumber
,
{
"
log_source_port"
,
PGC_SIGHUP
},
&
LogSourcePort
,
false
,
NULL
,
NULL
},
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
aead4966
...
...
@@ -35,7 +35,6 @@
#port = 5432
#hostname_lookup = false
#show_source_port = false
#unix_socket_directory = ''
#unix_socket_group = ''
...
...
@@ -122,6 +121,7 @@
#silent_mode = false
#log_connections = false
#log_source_port = false
#log_pid = false
#log_statement = false
#log_duration = false
...
...
src/include/tcop/tcopprot.h
View file @
aead4966
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: tcopprot.h,v 1.5
1 2002/10/21 18:57:35 petere
Exp $
* $Id: tcopprot.h,v 1.5
2 2002/11/15 01:40:20 momjian
Exp $
*
* OLD COMMENTS
* This file was created so that other c files could get the two
...
...
@@ -31,7 +31,7 @@ extern bool Warn_restart_ready;
extern
bool
InError
;
extern
CommandDest
whereToSendOutput
;
extern
bool
HostnameLookup
;
extern
bool
ShowPortNumber
;
extern
bool
LogSourcePort
;
extern
DLLIMPORT
char
*
debug_query_string
;
#ifndef BOOTSTRAP_INCLUDE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment