亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? socket.h

?? GNU Common C++ is a very portable and highly optimized class framework for writing C++ applications
?? H
?? 第 1 頁 / 共 4 頁
字號(hào):
// Copyright (C) 1999-2005 Open Source Telecom Corporation.//// 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.//// As a special exception, you may use this file as part of a free software// library without restriction.  Specifically, if other files instantiate// templates or use macros or inline functions from this file, or you compile// this file and link it with other files to produce an executable, this// file does not by itself cause the resulting executable to be covered by// the GNU General Public License.  This exception does not however    // invalidate any other reasons why the executable file might be covered by// the GNU General Public License.    //// This exception applies only to the code released under the name GNU// Common C++.  If you copy code from other releases into a copy of GNU// Common C++, as the General Public License permits, the exception does// not apply to the code that you add in this way.  To avoid misleading// anyone as to the status of such modified files, you must delete// this exception notice from them.//// If you write modifications of your own for GNU Common C++, it is your choice// whether to permit this exception to apply to your modifications.// If you do not wish that, delete this exception notice.///** * @file socket.h * @short Network addresses and sockets related classes. **/#ifndef	CCXX_SOCKET_H_#define	CCXX_SOCKET_H_#ifndef	CCXX_ADDRESS_H_#include <cc++/address.h>#endif#if defined(WIN32) && !defined(__CYGWIN32__)#include <io.h>#define	_IOLEN64	(unsigned)#define	_IORET64	(ssize_t)#define TIMEOUT_INF ~((timeout_t) 0)typedef int socklen_t;#else#define INVALID_SOCKET	-1typedef int SOCKET;#endif#ifndef	_IOLEN64#define	_IOLEN64#endif#ifndef	_IORET64#define	_IORET64#endif#ifndef	MSG_DONTWAIT#define	MSG_DONTWAIT	0#endif#ifdef	CCXX_NAMESPACESnamespace ost {#endif/** * Transport Protocol Ports. */typedef unsigned short tpport_t;/** * The Socket is used as the base for all Internet protocol services * under Common C++.  A socket is a system resource (or winsock descriptor) * that occupies a specific port address (and may be bound to a specific * network interface) on the local machine.  The socket may also be * directly connected to a specific socket on a remote internet host. *  * This base class is not directly used, but is * provided to offer properties common to other Common C++ socket classes, * including the socket exception model and the ability to set socket * properties such as QoS, "sockopts" properties like Dont-Route * and Keep-Alive, etc. *  * * @author David Sugar <dyfet@ostel.com> * @short base class of all sockets. */class __EXPORT Socket{public:	enum Family	{#ifdef	CCXX_IPV6		IPV6 = AF_INET6,#endif		IPV4 = AF_INET	};	typedef enum Family Family;	enum Error	{		errSuccess = 0,		errCreateFailed,		errCopyFailed,		errInput,		errInputInterrupt,		errResourceFailure,		errOutput,		errOutputInterrupt,		errNotConnected,		errConnectRefused,		errConnectRejected,		errConnectTimeout,		errConnectFailed,		errConnectInvalid,		errConnectBusy,		errConnectNoRoute,		errBindingFailed,		errBroadcastDenied,		errRoutingDenied,		errKeepaliveDenied,		errServiceDenied,		errServiceUnavailable,		errMulticastDisabled,		errTimeout,		errNoDelay,		errExtended,		errLookupFail,		errSearchErr,		errInvalidValue	};	typedef enum Error Error;	enum Tos	{		tosLowDelay = 0,		tosThroughput,		tosReliability,		tosMinCost,		tosInvalid	};	typedef enum Tos Tos;	enum Pending	{		pendingInput,		pendingOutput,		pendingError	};	typedef enum Pending Pending;protected:	enum State	{		INITIAL,		AVAILABLE,		BOUND,		CONNECTED,		CONNECTING,		STREAM	};	typedef enum State State;private:	// used by exception handlers....	mutable Error errid;	mutable const char *errstr;	mutable long syserr;	void setSocket(void);	friend SOCKET dupSocket(SOCKET s,Socket::State state);protected:	static Mutex mutex;	mutable struct	{		bool thrown: 1;		bool broadcast: 1;		bool route: 1;		bool keepalive: 1;		bool loopback: 1;		bool multicast: 1;		bool completion: 1;		bool linger: 1;		unsigned ttl: 8;	} flags;	/**	 * the actual socket descriptor, in Windows, unlike posix it 	 * *cannot* be used as an file descriptor	 * that way madness lies -- jfc	 */	SOCKET volatile so;	State volatile state;	/**	 * This service is used to throw all socket errors which usually	 * occur during the socket constructor.	 *	 * @param error defined socket error id.	 * @param err string or message to pass.	 * @param systemError the system error# that caused the error	 */	Error error(Error error, char *err = NULL, long systemError = 0) const;	/**	 * This service is used to throw application defined socket errors	 * where the application specific error code is a string.	 *	 * @param err string or message to pass.	 */	inline void error(char *err) const		{error(errExtended, err);};		/**	 * This service is used to turn the error handler on or off for	 * "throwing" exceptions by manipulating the thrown flag.	 *	 * @param enable true to enable handler.	 */	inline void setError(bool enable)		{flags.thrown = !enable;};	/**	 * Used as the default destructor for ending a socket.  This	 * will cleanly terminate the socket connection.  It is provided	 * for use in derived virtual destructors.	 */	void endSocket(void);	/**	 * Used as a common handler for connection failure processing.	 *	 * @return correct failure code to apply.	 */	Error connectError(void);	/**	 * Set the send limit.	 */	Error sendLimit(int limit = 2048);	/**	 * Set thr receive limit.	 */	Error receiveLimit(int limit = 1);	/**	 * Set the send timeout for sending raw network data.	 *	 * @return errSuccess if set.	 * @param timer value in millisec.	 */	Error sendTimeout(timeout_t timer);	/**	 * Receive timeout for receiving raw network data.	 *	 * @return errSuccess if set.	 * @param timer value in milliseconds.	 */	Error receiveTimeout(timeout_t timer);	/**	 * Set the protocol stack network kernel send buffer size 	 * associated with the socket.	 *	 * @return errSuccess on success, or error.	 * @param size of buffer in bytes.	 */	Error sendBuffer(unsigned size);        /**         * Set the protocol stack network kernel receive buffer size	 * associated with the socket.         *          * @return errSuccess on success, or error.          * @param size of buffer in bytes.         */        Error receiveBuffer(unsigned size);	/**	 * Set the total protocol stack network kernel buffer size 	 * for both send and receive together.	 *	 * @return errSuccess on success	 * @param size of buffer.	 */	Error bufferSize(unsigned size);	/**	 * Set the subnet broadcast flag for the socket.  This enables	 * sending to a subnet and may require special image privileges	 * depending on the operating system.	 *	 * @return 0 (errSuccess) on success, else error code.	 * @param enable when set to true.	 */	Error setBroadcast(bool enable);	/**	 * Setting multicast binds the multicast interface used for	 * the socket to the interface the socket itself has been	 * implicitly bound to.  It is also used as a check flag	 * to make sure multicast is enabled before multicast	 * operations are used.	 *	 * @return 0 (errSuccess) on success, else error code.	 * @param enable when set to true.	 * @param family of protocol.	 */	Error setMulticastByFamily(bool enable, Family family = IPV4);	/**	 * Set the multicast loopback flag for the socket.  Loopback	 * enables a socket to hear what it is sending.	 *	 * @return 0 (errSuccess) on success, else error code.	 * @param enable when set to true.	 * @param family of protocol.	 */	Error setLoopbackByFamily(bool enable, Family family = IPV4);	/**	 * Set the multicast time to live for a multicast socket.	 *	 * @return 0 (errSuccess) on success, else error code.	 * @param ttl time to live.	 * @param fam family of protocol.	 */	Error setTimeToLiveByFamily(unsigned char ttl, Family fam = IPV4);	/**	 * Join a multicast group.	 *	 * @return 0 (errSuccess) on success, else error code.	 * @param ia address of multicast group to join.	 */	Error join(const IPV4Multicast &ia);#ifdef	CCXX_IPV6	Error join(const IPV6Multicast &ia);#endif	/**	 * Drop membership from a multicast group.	 *	 * @return 0 (errSuccess) on success, else error code.	 * @param ia address of multicast group to drop.	 */	Error drop(const IPV4Multicast &ia);#ifdef	CCXX_IPV6	Error drop(const IPV6Multicast &ia);#endif	/**	 * Set the socket routing to indicate if outgoing messages	 * should bypass normal routing (set false).	 *	 * @return 0 on success.	 * @param enable normal routing when set to true.	 */	Error setRouting(bool enable);	/**	 * Enable/disable delaying packets (Nagle algorithm)	 *	 * @return 0 on success.	 * @param enable disable Nagle algorithm when set to true.	 */	Error setNoDelay(bool enable);	/**	 * An unconnected socket may be created directly on the local	 * machine.  Sockets can occupy both the internet domain (AF_INET)	 * and UNIX socket domain (AF_UNIX) under unix.  The socket type	 * (SOCK_STREAM, SOCK_DGRAM) and protocol may also be specified.	 * If the socket cannot be created, an exception is thrown.	 * 	 * @param domain socket domain to use.	 * @param type base type and protocol family of the socket.	 * @param protocol specific protocol to apply.	 */	Socket(int domain, int type, int protocol = 0);	/**	 * A socket object may be created from a file descriptor when that	 * descriptor was created either through a socket() or accept()	 * call.  This constructor is mostly for internal use.	 * 	 * @param fd file descriptor of an already existing socket.	 */	Socket(SOCKET fd);	/**	 * Create an inactive socket object for base constructors.	 */	Socket();	/**         * A socket can also be constructed from an already existing         * Socket object. On POSIX systems, the socket file descriptor         * is dup()'d. On Win32, DuplicateHandle() is used.	 * 	 * @param source of existing socket to clone.	 */	Socket(const Socket &source);	/**	 * Process a logical input line from a socket descriptor	 * directly.	 *	 * @param buf pointer to string.	 * @param len maximum length to read.	 * @param timeout for pending data in milliseconds.	 * @return number of bytes actually read.	 */	ssize_t readLine(char *buf, size_t len, timeout_t timeout = 0);        /**         * Read in a block of len bytes with specific separator.  Can         * be zero, or any other char.  If \\n or \\r, it's treated just         * like a readLine().  Otherwise it looks for the separator.         *         * @param buf pointer to byte allocation.         * @param len maximum length to read.         * @param separator separator for a particular ASCII character         * @param t timeout for pending data in milliseconds.         * @return number of bytes actually read.         */        virtual ssize_t readData(void * buf,size_t len,char separator=0,timeout_t t=0);        /**         * Write a block of len bytes to socket.         *         * @param buf pointer to byte allocation.         * @param len maximum length to write.         * @param t timeout for pending data in milliseconds.         * @return number of bytes actually read.         */        virtual ssize_t writeData(const void* buf,size_t len,timeout_t t=0);public:	/**	 * The socket base class may be "thrown" as a result of an	 * error, and the "catcher" may then choose to destroy the	 * object.  By assuring the socket base class is a virtual	 * destructor, we can assure the full object is properly	 * terminated.	 */	virtual ~Socket();	/**	 * See if a specific protocol family is available in the	 * current runtime environment.	 *	 * @return true if family available.	 */	static bool check(Family fam);	/**	 * Sockets may also be duplicated by the assignment operator.	 */	Socket &operator=(const Socket &from);	/**	 * May be used to examine the origin of data waiting in the	 * socket receive queue.  This can tell a TCP server where pending	 * "connect" requests are coming from, or a UDP socket where it's	 * next packet arrived from.	 *	 * @param port ptr to port number of sender.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色哟哟一区二区三区| 国产欧美日韩不卡免费| 日韩一二三区视频| 国产精品第一页第二页第三页| 亚洲第一综合色| a4yy欧美一区二区三区| 精品久久国产97色综合| 亚洲午夜在线观看视频在线| 国产麻豆精品95视频| 欧美日韩国产另类不卡| 中文字幕日本不卡| 国产成人小视频| 欧美不卡一区二区三区四区| 亚洲黄色片在线观看| 成人黄色av电影| 精品卡一卡二卡三卡四在线| 亚洲成人av福利| 99国产精品99久久久久久| 精品国产乱码久久久久久免费| 亚洲美女视频在线| 成人毛片老司机大片| 久久免费看少妇高潮| 午夜精品123| 色综合久久久久| 亚洲视频一二三| 99精品国产99久久久久久白柏| 亚洲精品一线二线三线| 久久成人精品无人区| 日韩一二三区不卡| 日韩成人一级大片| 在线播放国产精品二区一二区四区 | 亚洲欧美一区二区三区极速播放 | 精品久久久久久无| 蜜臀av在线播放一区二区三区| 欧美日韩国产一级二级| 一区二区在线免费| 欧美午夜不卡在线观看免费| 一区二区三区免费在线观看| 91网站在线播放| 一区二区三区免费网站| 欧美日韩三级视频| 亚洲大片免费看| 7777精品伊人久久久大香线蕉完整版 | 高清beeg欧美| 国产精品久久久久影视| 色域天天综合网| 亚洲国产aⅴ天堂久久| 欧美高清激情brazzers| 蜜芽一区二区三区| 久久伊人中文字幕| 9人人澡人人爽人人精品| 一区二区三区四区在线免费观看 | 欧美一区三区四区| 日本成人在线不卡视频| 国产视频在线观看一区二区三区| 豆国产96在线|亚洲| 亚洲精品视频在线观看网站| 欧美日韩精品一区二区三区| 奇米精品一区二区三区在线观看一 | 欧美性色黄大片手机版| 蜜桃91丨九色丨蝌蚪91桃色| 2020国产精品久久精品美国| 99这里只有精品| 图片区小说区区亚洲影院| 精品国一区二区三区| av午夜一区麻豆| 日韩电影在线观看一区| 欧美激情艳妇裸体舞| 欧美日韩国产高清一区二区三区 | 国产99一区视频免费| 一区二区三区四区视频精品免费| 制服丝袜成人动漫| 成人av电影免费观看| 首页欧美精品中文字幕| 久久精品免视看| 欧美人xxxx| 成人激情黄色小说| 蜜臀av亚洲一区中文字幕| 国产精品久久久久久久久久免费看 | 精品国产一区二区三区久久影院| av在线这里只有精品| 日韩av午夜在线观看| 国产精品短视频| 精品国产免费人成电影在线观看四季| 91一区二区三区在线播放| 国产又黄又大久久| 午夜精品久久久| 亚洲精品成a人| 国产精品麻豆一区二区| 亚洲精品一线二线三线| 欧美一区二区性放荡片| 欧美在线一区二区| av激情亚洲男人天堂| 国产一区二区三区四| 日韩国产高清影视| 亚洲一区在线电影| 中文字幕一区二区三| 久久综合色婷婷| 日韩女优av电影| 91精品欧美一区二区三区综合在| 色综合久久中文综合久久牛| 成人精品电影在线观看| 国产一区二区在线观看视频| 免费高清在线一区| 日韩不卡在线观看日韩不卡视频| 一区二区三区自拍| 1024亚洲合集| 成人欧美一区二区三区视频网页| 亚洲精品一区二区精华| 欧美一区二区久久| 日韩一区二区麻豆国产| 日韩午夜在线播放| 欧美一级二级在线观看| 欧美成人综合网站| 欧美大片拔萝卜| 欧美成va人片在线观看| 26uuu亚洲| 久久久天堂av| 中文字幕乱码日本亚洲一区二区| 久久毛片高清国产| 欧美极品少妇xxxxⅹ高跟鞋| 日本一区二区电影| 国产精品视频一二三区| 综合精品久久久| 亚洲免费观看视频| 午夜精品一区二区三区电影天堂| 香蕉影视欧美成人| 久久99久久久久| 国产高清在线观看免费不卡| 国产91精品在线观看| 99re热视频这里只精品| 欧美中文字幕一区二区三区 | 成人性生交大片免费看中文 | 91九色最新地址| 在线观看网站黄不卡| 欧美日本一区二区三区| 日韩免费看网站| 国产女同性恋一区二区| 亚洲精品午夜久久久| 人禽交欧美网站| 粉嫩一区二区三区在线看| 91亚洲大成网污www| 777a∨成人精品桃花网| 久久久亚洲欧洲日产国码αv| 中文字幕亚洲不卡| 午夜精品久久久久久久久| 久久精品72免费观看| 成人免费视频国产在线观看| 一本久道中文字幕精品亚洲嫩| 欧美日韩成人综合天天影院| 欧美不卡视频一区| 亚洲欧美一区二区三区久本道91| 午夜视频在线观看一区二区三区 | 久久久.com| 国产精品三级电影| 午夜精品久久一牛影视| 国产一区二区不卡老阿姨| 91视频com| 欧美一二三区在线观看| 亚洲欧美韩国综合色| 美女视频黄久久| 欧美亚洲综合另类| 亚洲国产精品精华液ab| 日韩影院免费视频| 成人av免费在线观看| 日韩欧美精品在线视频| 亚洲男人的天堂一区二区| 久草这里只有精品视频| 欧美偷拍一区二区| 国产性天天综合网| 麻豆精品在线观看| 欧美日韩在线电影| 国产精品对白交换视频| 狠狠网亚洲精品| 5566中文字幕一区二区电影| 中文字幕日韩一区二区| 国产一区二区三区久久久| 欧美日韩精品一区视频| 亚洲精品乱码久久久久久久久| 国精产品一区一区三区mba视频| 欧美亚州韩日在线看免费版国语版| 国产三级久久久| 麻豆精品一区二区av白丝在线| 欧美三级在线看| 亚洲日本青草视频在线怡红院| 国产一区二区三区免费观看| 91精品国产色综合久久ai换脸 | yourporn久久国产精品| 欧美sm美女调教| 日韩电影一区二区三区四区| 欧美性猛交xxxxxx富婆| 亚洲柠檬福利资源导航| 99热精品一区二区| 国产精品理论在线观看| 福利一区在线观看| 欧美国产综合色视频| 国产成人精品一区二| 日本一区二区免费在线| 国产精品夜夜嗨| 久久久国产精品午夜一区ai换脸|