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

📄 spioutils.hpp

📁 spserver 是一个实现了半同步/半异步(Half-Sync/Half-Async)和领导者/追随者(Leader/Follower) 模式的服务器框架
💻 HPP
字号:
/* * Copyright 2007 Stephen Liu * For license terms, see the file COPYING along with this library. */#ifndef __spioutils_hpp__#define __spioutils_hpp__#include <netinet/in.h>class SP_IOUtils {public:	static void inetNtoa( in_addr * addr, char * ip, int size );	static int setNonblock( int fd );	static int setBlock( int fd );	static int tcpListen( const char * ip, int port, int * fd, int blocking = 1 );private:	SP_IOUtils();};#endif

⌨️ 快捷键说明

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