[Delivery-boy-cvs] client/DeliveryBoyC/classes clsEasyTCPServer.cs,NONE,1.1 clsEasySocket.cs,1.7,1.8
Status: Planning
Brought to you by:
mkloubert
From: Marcel K. <gen...@us...> - 2005-02-04 20:13:46
|
Update of /cvsroot/delivery-boy/client/DeliveryBoyC/classes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13538/DeliveryBoyC/classes Modified Files: clsEasySocket.cs Added Files: clsEasyTCPServer.cs Log Message: * added doxygen \note command & log cvs keyword in all top headers * started to create class EasyTCPServer --- NEW FILE: clsEasyTCPServer.cs --- // DeliveryBoy (Client) - FLAC file sharing tool for .NET // http://deliveryboy.sourceforge.net // // // Copyright (C) 2005 Marcel Joachim Kloubert // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // using System; /*! \class clsEasyTCPServer clsEasyTCPServer.cs "clsEasyTCPServer.cs" * * \brief Easy-to-use TCP Server class. * * This class is a simple TCP server class that uses clsEasySocket * * \author generalpd * * \date 2005-01-30 * * \bug (none) * * \remarks Last changed by: $Author: generalpd $ in revision $Revision: 1.1 $ on $Date: 2005/02/04 20:13:38 $ * * \todo Adding methods for handling data transfer between sockets. * * \note * $Log: clsEasyTCPServer.cs,v $ * Revision 1.1 2005/02/04 20:13:38 generalpd * * added doxygen \note command & log cvs keyword in all top headers * * started to create class EasyTCPServer * * */ public class clsEasyTCPServer { clsEasySocket[] m_oSockets; public clsEasyTCPServer() { // m_oSockets(0). } } Index: clsEasySocket.cs =================================================================== RCS file: /cvsroot/delivery-boy/client/DeliveryBoyC/classes/clsEasySocket.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** clsEasySocket.cs 4 Feb 2005 19:59:29 -0000 1.7 --- clsEasySocket.cs 4 Feb 2005 20:13:37 -0000 1.8 *************** *** 41,44 **** --- 41,51 ---- * \todo Adding methods for handling data transfer between sockets. * + * \note + * $Log$ + * Revision 1.8 2005/02/04 20:13:37 generalpd + * * added doxygen \note command & log cvs keyword in all top headers + * * started to create class EasyTCPServer + * + * */ |