1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef SIMPLE_NET_BUFFER_H
6#define SIMPLE_NET_BUFFER_H
7
8#include <net_buffer.h>
9
10
11struct simple_net_buffer : net_buffer {
12	uint8*				data;
13
14	struct {
15		struct sockaddr_storage source;
16		struct sockaddr_storage destination;
17	} storage;
18};
19
20
21extern net_buffer_module_info gSimpleNetBufferModule;
22
23
24#endif	// SIMPLE_NET_BUFFER_H
25