Return true is the URL indicates a would-be connection would use SSL Arguments: None

Return TypeFunction nameArguments
boolhzUrl::IsSSL(void)

Declared in file: hzUrl.h
Defined in file : hzUrl.cpp

Function Logic:

0:START 1:unknown 2:Return true 3:Return false

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 ;
}