⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 socket.h

📁 MiniSip Client with DomainKeys Authentication, Sip, Audio communications, Echo Cancel
💻 H
字号:
/*  Copyright (C) 2005, 2004 Erik Eliasson, Johan Bilien  This library is free software; you can redistribute it and/or  modify it under the terms of the GNU Lesser General Public  License as published by the Free Software Foundation; either  version 2.1 of the License, or (at your option) any later version.  This library 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  Lesser General Public License for more details.  You should have received a copy of the GNU Lesser General Public  License along with this library; if not, write to the Free Software  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*//* * Authors: Erik Eliasson <eliasson@it.kth.se> *          Johan Bilien <jobi@via.ecp.fr> */#ifndef SOCKET_H#define SOCKET_H#include<libmnetutil/libmnetutil_config.h>#define SOCKET_TYPE_STREAM      0x10#define SOCKET_TYPE_TCP         0x11#define SOCKET_TYPE_TLS         0x12#define SOCKET_TYPE_UDP         0x20#include<libmutil/MemObject.h>#include<libmutil/mtypes.h>
//order of io.h and socket.h is important!
//note (cesc): io.h is not really needed here ... but in wince, we need to make 
//	sure that we are the first ones to include io.h and undefine close, read and write ... 
//	otherwise, the stupid evc4.0 compiler says that Socket->_close is not a member ... of course not!
#ifdef _MSC_VER
#	ifdef _WIN32_WCE
#		include<io.h>
#		undef _read
#		undef _write
#		undef _close
#	endif
#endif
class LIBMNETUTIL_API Socket : public MObject {	public:		Socket();		virtual ~Socket();		virtual int32_t getFd();		int32_t getType();//#ifdef _WIN32_WCE
/* Undef this ... it causes a link problem ... */
//#undef close
//#endif
		void close( void );	protected:		int32_t type;		int32_t fd;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -