00001 // 00002 // Transfer.h 00003 // 00004 // Copyright (c) Shareaza Development Team, 2002-2005. 00005 // This file is part of SHAREAZA (www.shareaza.com) 00006 // 00007 // Shareaza is free software; you can redistribute it 00008 // and/or modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 of 00010 // the License, or (at your option) any later version. 00011 // 00012 // Shareaza is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with Shareaza; if not, write to the Free Software 00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 // 00021 00022 #pragma once 00023 00024 #include "Connection.h" 00025 00026 class CBuffer; 00027 00028 00029 class CTransfer : public CConnection 00030 { 00031 // Construction 00032 public: 00033 CTransfer(); 00034 virtual ~CTransfer(); 00035 00036 // Attributes 00037 public: 00038 DWORD m_nRunCookie; 00039 public: 00040 CStringList m_pSourcesSent; 00041 CStringArray m_pHeaderName; 00042 CStringArray m_pHeaderValue; 00043 00044 // Operations 00045 public: 00046 virtual BOOL ConnectTo(IN_ADDR* pAddress, WORD nPort); 00047 virtual void AttachTo(CConnection* pConnection); 00048 virtual void Close(); 00049 protected: 00050 void ClearHeaders(); 00051 virtual BOOL OnHeaderLine(CString& strHeader, CString& strValue); 00052 00053 }; 00054