| Return Type | Function name | Arguments |
|---|---|---|
| void | hzPktQue::Clear | (void) |
Declared in file: hzIpServer.h
Defined in file : hzIpServer.cpp
Function Logic:
Function body:
void hzPktQue::Clear (void)
{
_hzfunc("hzPktQue::Clear") ;
if (m_pFinal)
{
m_pFinal->next = s_pTcpBuffer_freelist ;
s_pTcpBuffer_freelist = m_pStart ;
}
m_pStart = m_pFinal = 0;
m_nSize = 0;
}