Linux下使用Select模型的两个类Client And Server

源代码在线查看: server.h

软件大小: 3 K
上传用户: cy_jing
关键词: Client Select Server Linux
下载地址: 免注册下载 普通下载 VIP

相关代码

				// 				// File:   server.h				// Author: root				//				// Created on February 19, 2008, 9:34 AM				//								#ifndef _SERVER_H				#define	_SERVER_H								#include 				#include 				#include 								#include "client.h"								using namespace std;								class server{				public:				    server(int port);				    ~server();				    bool update(bool block);				    vector clients;				    enum {MAXCLIENTS = 11};				    void kill(){				        _kill = true;				    }				private:				    int _fd;				    bool _kill;				};								#endif	/* _SERVER_H */											

相关资源