Return TypeFunction nameArguments
boolhzUrl::IsSSL(void)

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

Function Logic:

0:START 1:Port()==443 2:Return true 3:Return false

Function body:

bool hzUrl::IsSSL (void)
{
   if (Port() == 443)
       return true ;
   return false ;
}