Sets the IP address to the operand provided as a character string. The string must be of the form x.x.x.x where x can be any number between 0 and 255

Return TypeFunction nameArguments
hzIpaddr&hzIpaddr::operator=(const char*,)

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

Function Logic:

0:START 1:unknown 2:m_Ipa 3:items 4:Return *this

Function body:

hzIpaddr& hzIpaddr::operator= (const char* cpIpa)
{
   //  Sets the IP address to the operand provided as a character string. The string must be of the form x.x.x.x where x can be any number between 0 and 255
   //  
   //  Arguments: 1) cpIpa IP address as a cstr
   //  
   //  Returns: Reference to this instance
   if (!cpIpa || !cpIpa[0])
       m_Ipa = 0;
   else
       IsIPAddr(m_Ipa, cpIpa) ;
   return *this ;
}