代码拉取完成,页面将自动刷新
/*
* =====================================================================================
*
* Filename: serial.h
*
* Description:
*
* Version: 1.0
* Created: 2018年04月16日 14时20分13秒
* Revision: none
* Compiler: gcc
*
* Author: jianxi sun (jianxi), ycsunjane@gmail.com
* Organization:
*
* =====================================================================================
*/
#ifndef __SERIAL_H__
#define __SERIAL_H__
#include <ev.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include "buffer.h"
typedef struct serial_ctx {
ev_io io;
ev_timer watcher;
ev_timer htwatcher;
void *serial;
} serial_ctx_t;
typedef struct serial {
int fd;
buffer_t *rxbuf;
buffer_t *txbuf;
serial_ctx_t *recv_ctx;
serial_ctx_t *send_ctx;
} serial_t;
serial_t *create_serial();
void close_and_free_serial(EV_P_ serial_t *serial);
#endif /* __SERIAL_H__ */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。