sec_generate_secure_token_cookie

one of the documented procedures in this installation of the ACS
Usage:
sec_generate_secure_token_cookie   secure_token
What it does:
Sets the ad_secure_token cookie.
Defined in: /web/philip/packages/acs-core/security-procs.tcl

Source code:


    # Sanity check - make sure we're using HTTPS.
    if { [ad_secure_conn_p] } {
	ad_set_cookie -secure t "ad_secure_token" [ns_urlencode $secure_token]
    }


philg@mit.edu