Start working on server request processing code

This commit is contained in:
Adam Honse 2020-04-11 16:54:34 -05:00
parent 594f66ab23
commit cf69598fd1
2 changed files with 91 additions and 3 deletions

View file

@ -1,6 +1,6 @@
typedef struct NetPacketHeader
{
unsigned char pkt_magic[4]; /* Magic value "ORGB" identifies beginning of packet */
char pkt_magic[4]; /* Magic value "ORGB" identifies beginning of packet */
unsigned int pkt_dev_idx; /* Device index */
unsigned int pkt_id; /* Packet ID */
unsigned int pkt_size; /* Packet size */