chat.h

来自「Linux网络编程教程适合初学者入门学习」· C头文件 代码 · 共 23 行

H
23
字号
/*chat.h*/

#ifndef __INET_H__

#define	__INET_H__



#include <stdio.h>

#include <string.h>

#include <sys/types.h>

#include <sys/socket.h>

#include <netinet/in.h>

#include <arpa/inet.h>

#include <fcntl.h>

#include <sys/time.h>

#include <unistd.h>



#define	MAX_CLIENT		10

#define READ            0

#define WRITE           1

#define MAX_LINE        1000

#define MAX_NAME        100

#define SETNAME "/name"



#endif

⌨️ 快捷键说明

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