summaryrefslogtreecommitdiff
path: root/request.h
blob: 6c5925ab53810eb2d7ab6a96657796d338bf9848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef REQUEST_H
#define REQUEST_H

#include <stdint.h>

typedef uint8_t byte;

typedef struct {
    byte opcode;

    byte data[512];
} request_t;

#endif /* REQUEST_H */