Skip to content

Add missing value of NETWORK_PROTOCOL context variable #170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Both namespace and variable names must be given as single-quoted, case-sensitive
[[fblangref30-funcs-tbl-systemnamespace]]
.Context variables in the SYSTEM namespace
`CLIENT_ADDRESS`::
For TCPv4, this is the IP address.
For TCPv4 and TCPv6, this is the IP address.
For XNET, the local process ID.
For all other protocols this variable is `NULL`.

Expand All @@ -88,7 +88,7 @@ The Firebird engine (server) version.
The isolation level of the current transaction: `'READ COMMITTED'`, `'SNAPSHOT'` or `'CONSISTENCY'`.

`NETWORK_PROTOCOL`::
The protocol used for the connection: `'TCPv4'`, `'WNET'`, `'XNET'` or `NULL`.
The protocol used for the connection: `'TCPv4'`, `'TCPv6'`, `'WNET'`, `'XNET'` or `NULL`.

`SESSION_ID`::
Same as global <<fblangref30-contextvars-current-connection>> variable.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Both namespace and variable names must be given as single-quoted, case-sensitive
[[fblangref40-funcs-tbl-systemnamespace]]
.Context variables in the SYSTEM namespace
`CLIENT_ADDRESS`::
For TCPv4, this is the IP address.
For TCPv4 and TCPv6, this is the IP address.
For XNET, the local process ID.
For all other protocols this variable is `NULL`.

Expand Down Expand Up @@ -100,7 +100,7 @@ External connection pool size
The isolation level of the current transaction: `'READ COMMITTED'`, `'SNAPSHOT'` or `'CONSISTENCY'`.

`NETWORK_PROTOCOL`::
The protocol used for the connection: `'TCPv4'`, `'WNET'`, `'XNET'` or `NULL`.
The protocol used for the connection: `'TCPv4'`, `'TCPv6'`, `'WNET'`, `'XNET'` or `NULL`.

`SESSION_ID`::
Same as global <<fblangref40-contextvars-current-connection>> variable.
Expand Down