#include <ProxyHandler.h>
Public Member Functions | |
| ProxyHandler () | |
| ~ProxyHandler () | |
| void | ViewSockets () |
Definition at line 32 of file ProxyHandler.h.
|
|
Definition at line 35 of file ProxyHandler.cpp.
|
|
|
Definition at line 41 of file ProxyHandler.cpp.
|
|
|
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 }
|
1.3.6
|
|