heartbeat.h
来自「一个很好的unix网络编程框架」· C头文件 代码 · 共 18 行
H
18 行
#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 + =
减小字号Ctrl + -
显示快捷键?