Return the port (default is 80) that the URL states (if any) Arguments: None

Return TypeFunction nameArguments
uint32_thzUrl::Port(void)

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

Function Logic:

0:START 1:unknown 2:Return 0 3:thisCtl 4:Return thisCtl->m_port

Function body:

uint32_t hzUrl::Port (void)
{
   //  Return the port (default is 80) that the URL states (if any)
   //  
   //  Arguments: None
   //  
   //  Returns: Number being any port number specified in the URL
   _url_space* thisCtl ;   //  This URL space
   if (!m_addr)
       return 0;
   thisCtl = _urlXlate(m_addr) ;
   return thisCtl->m_port ;
}