Clear the DNS record

Return TypeFunction nameArguments
voidDnsRec::Clear(void)

Declared and defined in file: hzDNS.h

Function Logic:

0:START 1:items m_anorakD m_anorakC m_anorakB m_anorakA m_nTTL m_nType m_nClass m_nLen m_nValue 2: No text

Function body:

void DnsRec::Clear (void)
   {
       //  Clear the DNS record
       m_Ipa.Clear() ;
       m_anorakA = m_anorakB = m_anorakC = m_anorakD = 0;
       m_nTTL = 0;
       m_nType = 0;
       m_nClass = 0;
       m_nLen = 0;
       m_nValue = 0;
   }