/* Oddsock - DoSomething Copyright (C) 2000 Oddsock 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. oddsock@oddsock.org */ // Socket.h: interface for the CMySocket class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_SOCKET_H__5EFF0BE2_257B_11D3_BF65_006008B82A90__INCLUDED_) #define AFX_SOCKET_H__5EFF0BE2_257B_11D3_BF65_006008B82A90__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #ifdef WIN32 #include #include #define SOCKET SOCKET #else #include #include #include #include #include #include #ifdef _DMALLOC_ #include #endif #define SOCKET int #define SOCKET_ERROR -1 #define closesocket close #endif class CMySocket { public: CMySocket(); virtual ~CMySocket(); void initWinsockLib(void); void socketErrorExit(char *szError); SOCKET DoSocketListen(unsigned short portnum); SOCKET DoSocketAccept(SOCKET s); SOCKET DoSocketConnect(char *hostname, unsigned short portnum); void CheckSocketError(int iError, char *szMessage); void CleanAndExit(int iError); // struct sockaddr_in connectedIP; }; #endif // !defined(AFX_SOCKET_H__5EFF0BE2_257B_11D3_BF65_006008B82A90__INCLUDED_)