![]() |
InternalSocket Class Reference#include <InternalSocket.h>
Collaboration diagram for InternalSocket: ![]()
Detailed Description
Definition at line 10 of file InternalSocket.h. Constructor & Destructor Documentation
Member Function Documentation
Definition at line 31 of file InternalSocket.cpp. References m_id, m_parent, and S2M_CONNECT. 00032 { 00033 if (Handler().Valid(m_parent)) 00034 { 00035 m_parent -> SendCmd(m_id, S2M_CONNECT); 00036 } 00037 }
Definition at line 40 of file InternalSocket.cpp. References m_id, m_parent, and S2M_DISCONNECTED. 00041 { 00042 if (Handler().Valid(m_parent)) 00043 { 00044 m_parent -> SendCmd(m_id, S2M_DISCONNECTED); 00045 } 00046 }
Definition at line 19 of file InternalSocket.cpp. References m_id, m_parent, and S2M_DATA. 00020 { 00021 printf("InternalSocket::OnRawData size %u\n", len); 00022 if (Handler().Valid(m_parent)) 00023 { 00024 m_parent -> SendCmd(m_id, S2M_DATA, len); 00025 m_parent -> SendBuf(buf, len); 00026 } 00027 ibuf.Remove(ibuf.GetLength()); 00028 }
Member Data Documentation
Definition at line 25 of file InternalSocket.h. Referenced by OnConnect(), OnDelete(), and OnRawData().
Definition at line 26 of file InternalSocket.h. Referenced by GetID(), OnConnect(), OnDelete(), and OnRawData().
The documentation for this class was generated from the following files: |