security::get_https_port (private)

 security::get_https_port

Defined in packages/acs-tcl/tcl/security-procs.tcl

Return the HTTPS port specified in the server's config file.

Returns:
The HTTPS port number or the empty string if none is configured.
Author:
Gustaf Neumann

Partial Call Graph (max 5 caller/called nodes):
%3 security::get_secure_location security::get_secure_location (public) security::get_https_port security::get_https_port security::get_secure_location->security::get_https_port security::https_available_p security::https_available_p (public) security::https_available_p->security::get_https_port security::driver security::driver (public) security::get_https_port->security::driver util_driver_info util_driver_info (public) security::get_https_port->util_driver_info

Testcases:
No testcase defined.
Source code:
    # get secure driver server modules
    set sdriver [security::driver]

    if {$sdriver ne ""} {
        set d [util_driver_info -driver $sdriver]
        return [dict get $d port]
    }
Generic XQL file:
packages/acs-tcl/tcl/security-procs.xql

PostgreSQL XQL file:
packages/acs-tcl/tcl/security-procs-postgresql.xql

Oracle XQL file:
packages/acs-tcl/tcl/security-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: