Logo
~Sockets~
~Examples~
~Contact~


OutSocket.cpp

Go to the documentation of this file.
00001 //OutSocket.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 //#include <stdio.h>
00021 
00022 #include "InSocket.h"
00023 #include "OutSocket.h"
00024 
00025 
00026 
00027 
00028 OutSocket::OutSocket(ISocketHandler& h)
00029 :TcpSocket(h, 32000, 32000)
00030 ,m_remote(NULL)
00031 {
00032 }
00033 
00034 
00035 OutSocket::~OutSocket()
00036 {
00037 }
00038 
00039 
00040 void OutSocket::OnDelete()
00041 {
00042         if (Handler().Valid(m_remote))
00043         {
00044                 m_remote -> SetCloseAndDelete();
00045         }
00046 }
00047 
00048 
00049 void OutSocket::OnRawData(const char *p,size_t l)
00050 {
00051         if (Handler().Valid(m_remote))
00052         {
00053                 m_remote -> SendBuf(p, l);
00054         }
00055         else
00056         {
00057                 Handler().LogError(this, "OnRawData", 0, "m_remote not valid");
00058         }
00059 }
00060 
00061 
00062 void OutSocket::OnConnect()
00063 {
00064         if (Handler().Valid(m_remote))
00065         {
00066                 if (m_remote -> tmpl)
00067                 {
00068                         printf("Sending %d early bytes\n",m_remote -> tmpl);
00069                         SendBuf(m_remote -> tmps, m_remote -> tmpl);
00070                         m_remote -> tmpl = 0;
00071                 }
00072         }
00073 }
00074 
00075 
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