summaryrefslogtreecommitdiff
path: root/include/pso/protocol.h
blob: 140a0245b9311ba7f51a6798d31dc0dce389e286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PROTOCOL_H
#define PROTOCOL_H

#include "pso/forward.h"
#include "pso/macros.h"
#include <global_types.h>

extern void bswap_16(u16 *val);
extern void bswap_32(u32 *val);

struct packet_header {
	u8 command;
	u8 flags;
	u16 size;
	void bswap() { bswap_16(&size); };
} __packed__;

#endif