Logo
~Sockets~
~Examples~
~Contact~


ProxyHandler.cpp

Go to the documentation of this file.
00001 // ProxyHandler.cpp
00002 /*
00003 Copyright (C) 2004  Anders Hedstrom
00004 
00005 This program is free software; you can redistribute it and/or
00006 modify it under the terms of the GNU General Public License
00007 as published by the Free Software Foundation; either version 2
00008 of the License, or (at your option) any later version.
00009 
00010 This program is distributed in the hope that it will be useful,
00011 but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 GNU General Public License for more details.
00014 
00015 You should have received a copy of the GNU General Public License
00016 along with this program; if not, write to the Free Software
00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00018 */
00019 
00020 #ifdef _WIN32
00021 #pragma warning(disable:4786)
00022 #endif
00023 //#include <stdio.h>
00024 
00025 #include "InSocket.h"
00026 #include "OutSocket.h"
00027 #include "ProxyHandler.h"
00028 #ifdef _WIN32
00029 //#define random rand
00030 #endif
00031 
00032 #define DEB(x)
00033 
00034 
00035 ProxyHandler::ProxyHandler()
00036 :SocketHandler()
00037 {
00038 }
00039 
00040 
00041 ProxyHandler::~ProxyHandler()
00042 {
00043 }
00044 
00045 
00046 void ProxyHandler::ViewSockets()
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 }
00063 
00064 
Page, code, and content Copyright (C) 2006 by Anders Hedström
Generated on Mon Aug 29 20:21:47 2005 for C++ Sockets by  doxygen 1.4.4