basin/src/work.h

12 lines
258 B
C
Raw Normal View History

2016-06-23 22:42:49 +00:00
#ifndef WORK_H_
#define WORK_H_
2019-04-14 22:57:59 +00:00
#include <avuna/log.h>
#include <avuna/netmgr.h>
2016-06-23 22:42:49 +00:00
2019-04-14 22:57:59 +00:00
int connection_read(struct netmgr_connection* conn, uint8_t* read_buf, size_t read_buf_len);
2016-06-23 22:42:49 +00:00
2019-04-14 22:57:59 +00:00
void connection_on_closed(struct netmgr_connection* conn);
2016-06-23 22:42:49 +00:00
#endif /* WORK_H_ */