summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/transport/third_party/nICEr/src/stun/stun_build.h
blob: c3f91a87b08b02cc4d81f73dbcd360e25f222236 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
Copyright (c) 2007, Adobe Systems, Incorporated
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.

* Neither the name of Adobe Systems, Network Resonance nor the names of its
  contributors may be used to endorse or promote products derived from
  this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#ifndef _stun_build_h
#define _stun_build_h

#include "stun.h"

#define NR_STUN_MODE_STUN               1
#ifdef USE_STUND_0_96
#define NR_STUN_MODE_STUND_0_96         2    /* backwards compatibility mode */
#endif /* USE_STUND_0_96 */
#define NR_STUN_MODE_STUN_NO_AUTH       3
int nr_stun_form_request_or_indication(int mode, int msg_type, nr_stun_message **msg);

typedef struct nr_stun_client_stun_binding_request_params_ {
    char *username;
    Data *password;
    char *nonce;
    char *realm;
} nr_stun_client_stun_binding_request_params;

int nr_stun_build_req_lt_auth(nr_stun_client_stun_binding_request_params *params, nr_stun_message **msg);
int nr_stun_build_req_st_auth(nr_stun_client_stun_binding_request_params *params, nr_stun_message **msg);
int nr_stun_build_req_no_auth(nr_stun_client_stun_binding_request_params *params, nr_stun_message **msg);


typedef struct nr_stun_client_stun_keepalive_params_ {
#if defined(WIN32) || defined(__clang__)
    // VC++ and clang give error and warning respectively if no members
    int dummy;
#endif
} nr_stun_client_stun_keepalive_params;

int nr_stun_build_keepalive(nr_stun_client_stun_keepalive_params *params, nr_stun_message **msg);


#ifdef USE_STUND_0_96
typedef struct nr_stun_client_stun_binding_request_stund_0_96_params_ {
#ifdef WIN32  // silly VC++ gives error if no members
    int dummy;
#endif
} nr_stun_client_stun_binding_request_stund_0_96_params;

int nr_stun_build_req_stund_0_96(nr_stun_client_stun_binding_request_stund_0_96_params *params, nr_stun_message **msg);
#endif /* USE_STUND_0_96 */


#ifdef USE_ICE
typedef struct nr_stun_client_ice_binding_request_params_ {
    char *username;
    Data password;
    UINT4 priority;
    int control;
#define NR_ICE_CONTROLLING  1
#define NR_ICE_CONTROLLED   2
    UINT8 tiebreaker;
} nr_stun_client_ice_binding_request_params;

int nr_stun_build_use_candidate(nr_stun_client_ice_binding_request_params *params, nr_stun_message **msg);

int nr_stun_build_req_ice(nr_stun_client_ice_binding_request_params *params, nr_stun_message **msg);
#endif /* USE_ICE */


typedef struct nr_stun_client_auth_params_ {
    char authenticate;
    char *username;
    char *realm;
    char *nonce;
    Data password;
} nr_stun_client_auth_params;

#ifdef USE_TURN
typedef struct nr_stun_client_allocate_request_params_ {
    UINT4 lifetime_secs;
} nr_stun_client_allocate_request_params;

int nr_stun_build_allocate_request(nr_stun_client_auth_params *auth, nr_stun_client_allocate_request_params *params, nr_stun_message **msg);


typedef struct nr_stun_client_refresh_request_params_ {
    UINT4 lifetime_secs;
} nr_stun_client_refresh_request_params;

int nr_stun_build_refresh_request(nr_stun_client_auth_params *auth, nr_stun_client_refresh_request_params *params, nr_stun_message **msg);



typedef struct nr_stun_client_permission_request_params_ {
    nr_transport_addr remote_addr;
} nr_stun_client_permission_request_params;

int nr_stun_build_permission_request(nr_stun_client_auth_params *auth, nr_stun_client_permission_request_params *params, nr_stun_message **msg);


typedef struct nr_stun_client_send_indication_params_ {
    nr_transport_addr remote_addr;
    Data data;
} nr_stun_client_send_indication_params;

int nr_stun_build_send_indication(nr_stun_client_send_indication_params *params, nr_stun_message **msg);

typedef struct nr_stun_client_data_indication_params_ {
    nr_transport_addr remote_addr;
    Data data;
} nr_stun_client_data_indication_params;

int nr_stun_build_data_indication(nr_stun_client_data_indication_params *params, nr_stun_message **msg);
#endif /* USE_TURN */

int nr_stun_form_success_response(nr_stun_message *req, nr_transport_addr *from, Data *password, nr_stun_message *res);
void nr_stun_form_error_response(nr_stun_message *request, nr_stun_message* response, int number, char* msg);
int nr_stun_compute_lt_message_integrity_password(const char *username, const char *realm,
                                                  Data *password, Data *hmac_key);

#endif