![]() |
ProxyHandler Class Reference#include <ProxyHandler.h>
Detailed Description
Definition at line 32 of file ProxyHandler.h. Constructor & Destructor Documentation
Member Function Documentation
Definition at line 46 of file ProxyHandler.cpp. Referenced by run(). 00047 { 00048 for (socket_m::iterator it = m_sockets.begin(); it != m_sockets.end(); it++) 00049 { 00050 SOCKET s = (*it).first; 00051 Socket *p = (*it).second; 00052 if (dynamic_cast<InSocket *>(p)) 00053 { 00054 printf("%4d: InSocket\n",s); 00055 } 00056 else 00057 if (dynamic_cast<OutSocket *>(p)) 00058 { 00059 printf("%4d: OutSocket\n",s); 00060 } 00061 } 00062 }
The documentation for this class was generated from the following files: |