summaryrefslogtreecommitdiffstats
path: root/stun.h
blob: 64493a864fefa2f8fd721c7d698f453d9d9ce56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef __UNETD_STUN_H
#define __UNETD_STUN_H

#include <stdint.h>
#include <stdbool.h>

#define STUN_MSGTYPE_BINDING_REQUEST		0x0001
#define STUN_MSGTYPE_BINDING_RESPONSE		0x0101
#define STUN_MSGTYPE_BINDING_ERROR		0x0111
#define STUN_MSGTYPE_BINDING_INDICATION		0x0011

#define STUN_MSGTYPE_SHARED_SECRET_REQUEST	0x0002
#define STUN_MSGTYPE_SHARED_SECRET_RESPONSE	0x0102
#define STUN_MSGTYPE_SHARED_SECRET_ERROR	0x0112

#define STUN_MAGIC				0x2112a442

enum tlv_type {
	STUN_TLV_MAPPED_ADDRESS =		0x01,
	STUN_TLV_RESPONSE_ADDRESS =		0x02,
	STUN_TLV_CHANGE_REQUEST =		0x03,
	STUN_TLV_SOURCE_ADDRESS =		0x04,
	STUN_TLV_CHANGED_ADDRESS =		0x05,
	STUN_TLV_XOR_MAPPED_ADDRESS =		0x20,
	STUN_TLV_RESPONSE_PORT =		0x27,
};

struct stun_msg_hdr {
	uint16_t msg_type;
	uint16_t msg_len;
	uint32_t magic;
	uint8_t transaction[12];
};

struct stun_msg_tlv {
	uint16_t type;
	uint16_t len;
};

struct stun_tlv_policy {
	uint16_t type;
	uint16_t min_len;
};

struct stun_request {
	uint8_t transaction[12];
	uint16_t port;
	bool pending;
};

bool stun_msg_is_valid(const void *data, size_t len);
const void *stun_msg_request_prepare(struct stun_request *req, size_t *len,
				     uint16_t response_port);
bool stun_msg_request_complete(struct stun_request *req, const void *data,
			       size_t len);

#endif