Return true if this hzDomain instance is lexically less than or equal to the operand. Note that comparison is first done on the domain part (the RHS of the @) and then done on the address part (the LHS of the @)

Return TypeFunction nameArguments
boolhzDomain::operator<=(hzDomain&,)

Declared in file: hzEmaddr.h
Defined in file : hzDomain.cpp

Function Logic:

0:START 1:unknown 2:Return true 3:unknown 4:Return false 5:unknown 6:Return true 7:res 8:unknown 9:Return false 10:Return true

Function body:

bool hzDomain::operator<= (hzDomain& E)
{
   //  Return true if this hzDomain instance is lexically less than or equal to the operand. Note that comparison is first done on the domain
   //  part (the RHS of the @) and then done on the address part (the LHS of the @)
   //  
   //  Arguments: 1) E Test domain name
   //  
   //  Returns: True If this addesss is lexically less than or equal to the supplied test domain name
   //     False Otherwise
   _hzfunc("hzDomain::operator<=") ;
   int32_t     res ;       //  Comparison result
   //  Are this and the operand connected?
   if (m_addr == E.m_addr)         return true ;
   if (m_addr && E.m_addr == 0)return false ;
   if (E.m_addr && m_addr == 0)return true ;
   //  Compare domains first
   res = strcmp(GetDomain(), E.GetDomain()) ;
   if (res > 0)
       return false ;
   return true ;
}