File: stun.h

package info (click to toggle)
kamailio 4.4.4-2%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 60,288 kB
  • sloc: ansic: 599,952; xml: 178,897; sh: 8,634; makefile: 8,513; sql: 7,094; yacc: 3,449; perl: 3,441; python: 1,459; cpp: 1,219; php: 1,047; java: 449; pascal: 194; cs: 40; awk: 27
file content (62 lines) | stat: -rw-r--r-- 1,629 bytes parent folder | download | duplicates (5)
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
58
59
60
61
62
/*
 * Portions Copyright (C) 2013 Crocodile RCS Ltd
 *
 * Based on "ser_stun.h". Copyright (C) 2001-2003 FhG Fokus
 *
 * This file is part of Kamailio, a free SIP server.
 *
 * Kamailio is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version
 *
 * Kamailio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License 
 * along with this program; if not, write to the Free Software 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef _STUN_H
#define _STUN_H

#include "ip_addr.h"

/* type redefinition */
typedef unsigned char UCHAR_T;
typedef unsigned short USHORT_T;
typedef unsigned int UINT_T;
typedef unsigned long ULONG_T;

#define MAGIC_COOKIE	0x2112A442
#define TRANSACTION_ID	12

struct transaction_id {
        UINT_T magic_cookie;
        UCHAR_T id[TRANSACTION_ID];
};

struct stun_hdr {
        USHORT_T type;
        USHORT_T len;
        struct transaction_id id;
};

struct stun_attr {
        USHORT_T type;
        USHORT_T len;
};

typedef struct stun_event_info {
	char *buf;
	unsigned int len;
	struct receive_info *rcv;
} stun_event_info_t;

int stun_process_msg(char* buf, unsigned int len, struct receive_info* ri);

#endif /* _STUN_H */