ad_verify_and_get_session_id

one of the documented procedures in this installation of the ACS
Usage:
ad_verify_and_get_session_id { -secure f } { db "" }
What it does:
Returns the current session's ID, verifying its validity (or returning 0 if unable to do so).
Defined in: /web/philip/packages/acs-core/security-procs.tcl

Source code:

arg_parser_for_ad_verify_and_get_session_id $args

    if { ![ad_validate_security_info -secure $secure] } {
	return 0
    }
    return [ad_get_session_id]


philg@mit.edu