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

📄 heartbeat.h

📁 一个很好的unix网络编程框架
💻 H
字号:
#ifndef __HEARTBEAT_H__#define __HEARTBEAT_H__#define MSG_TYPE1		1		/* application specific msg */#define MSG_TYPE2		2		/* another one */#define MSG_HEARTBEAT	3		/* heartbeat message */typedef struct					/* message structure */{	u_int32_t type;				/* MSG_TYPE1, ... */	char data[ 2000 ];} msg_t;#define T1				60		/* idle time before heartbeat */#define T2				10		/* time to wait for response */#endif  /* __HEARTBEAT_H__ */

⌨️ 快捷键说明

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