Return true is the URL indicates a would-be connection would use SSL Arguments: None
| Return Type | Function name | Arguments |
|---|---|---|
| bool | hzUrl::IsSSL | (void) |
Declared in file: hzUrl.h
Defined in file : hzUrl.cpp
Function Logic:
Function body:
bool hzUrl::IsSSL (void)
{
// Return true is the URL indicates a would-be connection would use SSL
//
// Arguments: None
//
// Returns: True If the port is set to 443
// False Otherwise
if (Port() == 443)
return true ;
return false ;
}