加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
frame.h 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
KerwinKoo 提交于 2017-06-29 16:29 . fix code fromat
#ifndef _FRAME_H_
#define _FRAME_H_
#include <stdlib.h>
#include <stdio.h>
#include "uthash.h"
#include "common.h"
#define VERI 0
#define CMDI 1
#define LENI 2
#define SIDI 4
#define DATAI 8
// cmds
enum cmd_type {
cmdSYN = 0, // stream open
cmdFIN, // stream close, a.k.a EOF mark
cmdPSH, // data push
cmdNOP, // no operation
};
struct frame {
char ver;
char cmd;
ushort len;
uint32_t sid;
unsigned char *data;
};
struct frame *new_frame(char cmd, uint32_t sid);
int get_header_size();
struct frame *raw_frame(unsigned char *buf, const size_t buf_len);
struct frame *raw_frame_only_msg(unsigned char *buf, const size_t buf_len);
void set_frame_cmd(struct frame *f, char cmd);
void set_frame_len(struct frame *f, ushort data_len);
void free_frame(struct frame *f);
#endif //_FRAME_H_
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化