blob: b6dba99d9680ad6f8dd4eb283063d0a6a2c013c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <stdint.h>
#include "net.h"
/* common */
#define EOS_APP_MTU 1500
#define EOS_APP_SIZE_BUF EOS_APP_MTU
#define EOS_APP_MTYPE_TUN 1
#define EOS_APP_MAX_MTYPE 8
/* esp32 specific */
#define EOS_APP_SIZE_BUFQ 4
#define EOS_APP_SIZE_SNDQ 4
void eos_app_init(void);
void eos_app_run(void);
unsigned char *eos_app_alloc(void);
void eos_app_free(unsigned char *buf);
int eos_app_send(unsigned char mtype, unsigned char *buffer, uint16_t buf_len);
void eos_app_sleep_req(void);
void eos_app_wake(void);
void eos_app_set_handler(unsigned char mtype, eos_net_handler_t handler);
|