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

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

?? socket.h

?? GNU Common C++ is a very portable and highly optimized class framework for writing C++ applications
?? H
?? 第 1 頁 / 共 4 頁
字號:
// 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
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品一区二| 日本一区二区高清| 精品国内片67194| 日韩理论片一区二区| 麻豆精品久久精品色综合| 99久久久久久99| 精品免费国产一区二区三区四区| 亚洲男人的天堂av| 国产精品911| 欧美一级久久久| 亚洲综合色噜噜狠狠| 成人免费毛片高清视频| 精品处破学生在线二十三| 亚洲观看高清完整版在线观看| 成人黄色一级视频| 精品日韩一区二区三区| 日韩电影在线一区二区三区| 一本久久综合亚洲鲁鲁五月天| 欧美经典一区二区| 国内成+人亚洲+欧美+综合在线| 欧美一级黄色片| 日韩主播视频在线| 欧美精品第一页| 性久久久久久久久| 欧美日韩成人在线| 国产成人在线色| 日韩女同互慰一区二区| 视频一区二区三区中文字幕| 成人精品国产一区二区4080| 日韩一卡二卡三卡四卡| 午夜久久久久久电影| 欧美日韩成人综合天天影院| 亚洲午夜视频在线| 欧美唯美清纯偷拍| 亚洲一区免费在线观看| 欧美性大战久久久久久久蜜臀| 亚洲色图.com| 欧美性大战久久久久久久| 亚洲bt欧美bt精品| 欧美日韩视频专区在线播放| 午夜精品福利一区二区三区蜜桃| 欧美三级电影在线看| 三级久久三级久久| 欧美一个色资源| 激情五月激情综合网| www国产精品av| 国产成人自拍在线| 最新欧美精品一区二区三区| 日本韩国视频一区二区| 五月天婷婷综合| 日韩免费性生活视频播放| 国产精品影视网| 国产精品入口麻豆原神| 色综合中文综合网| 国产91丝袜在线18| 国产女主播一区| 91浏览器在线视频| 丝袜国产日韩另类美女| 精品国精品自拍自在线| 国产剧情一区二区三区| 综合色中文字幕| 91精品国产综合久久久久久久| 久久激情综合网| 国产欧美精品日韩区二区麻豆天美| 99国产精品视频免费观看| 亚洲国产毛片aaaaa无费看| 日韩欧美国产午夜精品| 成人看片黄a免费看在线| 亚洲国产一二三| 精品欧美乱码久久久久久1区2区| 成人毛片老司机大片| 亚洲福利国产精品| 国产亚洲va综合人人澡精品| 欧美影院精品一区| 国产福利91精品一区二区三区| 亚洲欧美激情在线| 久久综合国产精品| 欧美亚洲综合色| 粉嫩aⅴ一区二区三区四区| 亚洲午夜一二三区视频| 日本一区二区视频在线| 91麻豆精品国产91久久久久久| 不卡av在线免费观看| 免费久久精品视频| 亚洲一区二区欧美| 国产精品不卡在线| 精品国产免费人成电影在线观看四季| 91女神在线视频| 国产精品自拍一区| 麻豆高清免费国产一区| 一区二区三区欧美日韩| 欧美国产日本视频| 亚洲精品一区二区精华| 亚洲三级电影全部在线观看高清| 51精品视频一区二区三区| gogo大胆日本视频一区| 国产一区二区三区在线看麻豆| 夜夜操天天操亚洲| 亚洲欧洲精品一区二区三区不卡| 欧美成人激情免费网| 91福利视频网站| 一本一本大道香蕉久在线精品| 国产乱妇无码大片在线观看| 免费一级欧美片在线观看| 亚洲成人福利片| 亚洲一区在线观看视频| 亚洲欧美自拍偷拍| 国产精品天干天干在观线| 久久久久高清精品| 国产午夜亚洲精品不卡| 久久影视一区二区| 26uuuu精品一区二区| 日韩精品影音先锋| 日韩亚洲欧美在线| 欧美丰满一区二区免费视频| 欧美视频一区二区在线观看| 一本到不卡精品视频在线观看| 99久久久久久| 99国产一区二区三精品乱码| 成人高清在线视频| proumb性欧美在线观看| 91香蕉视频黄| 在线视频国内自拍亚洲视频| 欧美影片第一页| 欧美精品亚洲一区二区在线播放| 欧美日韩国产小视频| 欧美一区二区私人影院日本| 夜夜嗨av一区二区三区四季av| 最新国产成人在线观看| 亚洲精品水蜜桃| 亚洲午夜激情网页| 日韩av成人高清| 精品一区二区三区免费毛片爱| 国产制服丝袜一区| 福利视频网站一区二区三区| av一二三不卡影片| 欧美专区日韩专区| 777午夜精品视频在线播放| 精品国产一区二区精华| 国产精品视频yy9299一区| 亚洲激情一二三区| 美女视频免费一区| 国产99久久久国产精品潘金 | 6080yy午夜一二三区久久| 日韩一区二区三区四区五区六区| 欧美tk丨vk视频| 中文字幕色av一区二区三区| 亚洲一区二区高清| 久久99这里只有精品| 成人av综合在线| 欧美日韩精品一区二区三区四区| 欧美成人a视频| 中文字幕视频一区| 六月丁香综合在线视频| 本田岬高潮一区二区三区| 欧美人狂配大交3d怪物一区| 国产视频在线观看一区二区三区| 亚洲激情在线播放| 国产真实乱对白精彩久久| 91啪亚洲精品| 久久亚洲私人国产精品va媚药| 亚洲精品ww久久久久久p站| 国产一区在线观看麻豆| 91国产免费观看| 日本一区二区三区四区| 日韩**一区毛片| 一本色道久久综合亚洲精品按摩| 欧美大尺度电影在线| 一区二区三区精品视频| 国产麻豆午夜三级精品| 欧美日韩一区在线观看| 国产精品毛片久久久久久| 久久99国产乱子伦精品免费| 色综合天天综合在线视频| 精品国产一二三| 亚洲6080在线| 色老头久久综合| 国产精品人人做人人爽人人添| 日韩va欧美va亚洲va久久| 在线免费av一区| 亚洲欧洲性图库| 国产成人综合精品三级| 精品国产电影一区二区| 天堂va蜜桃一区二区三区漫画版| 色综合天天综合| 日本一区二区动态图| 国产高清不卡二三区| 26uuu成人网一区二区三区| 日本强好片久久久久久aaa| 在线观看成人小视频| 亚洲欧美一区二区三区孕妇| 成人97人人超碰人人99| 国产日韩欧美高清在线| 国产高清亚洲一区| 久久久天堂av| 国产suv一区二区三区88区| 久久亚洲春色中文字幕久久久| 久久精品国产亚洲5555| 日韩精品一区二区三区蜜臀| 久久精品99国产精品|