eco2d/code/common/packets/packet.h

34 lines
702 B
C
Raw Normal View History

2021-01-26 19:16:08 +00:00
#pragma once
#include "system.h"
2021-05-03 22:44:39 +00:00
#define PKT_BUFSIZ 4096
2021-01-26 19:16:08 +00:00
typedef enum {
MSG_ID_01_WELCOME,
MSG_ID_LIBRG_UPDATE,
MSG_ID_FORCE_UINT16 = UINT16_MAX,
} pkt_messages;
2021-05-03 19:53:28 +00:00
typedef struct pkt_header {
2021-01-26 19:16:08 +00:00
uint16_t id;
uint16_t sender;
uint8_t *data;
uint32_t datalen;
int8_t ok;
} pkt_header;
2021-05-03 19:53:28 +00:00
#define PKT_HANDLER_PROC(name) int32_t name(pkt_header *header)
typedef PKT_HANDLER_PROC(pkt_handler_proc);
2021-01-26 19:16:08 +00:00
typedef struct {
uint16_t id;
pkt_handler_proc *handler;
} pkt_handler;
int32_t pkt_header_decode(pkt_header *table, void *data, size_t datalen);
extern pkt_handler pkt_handlers[];
2021-05-03 22:44:39 +00:00
extern uint8_t pkt_buffer[];
2021-05-04 11:04:15 +00:00
extern uint8_t pkt_pack_buffer[];
2021-05-04 08:08:00 +00:00
#include "packet_list.h"