ad_ssl_available_p

one of the documented procedures in this installation of the ACS
Usage:
ad_ssl_available_p
What it does:
Returns 1 if this AOLserver has the SSL module installed.
Defined in: /web/philip/packages/acs-core/admin-procs.tcl

Source code:


    if { [ns_config ns/server/[ns_info server]/modules nsssl] != "" } {
	return 1
    } else {
	return 0
    }


philg@mit.edu