summaryrefslogtreecommitdiffstats
path: root/tinyNET/src/ice/tnet_ice_event.h
blob: 8f2f72efcd8c937b9fc957150b97353f8c35b4e2 (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
/*
* Copyright (C) 2012-2014 Mamadou DIOP
* Copyright (C) 2012-2014 Doubango Telecom <http://www.doubango.org>.
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO 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 3 of the License, or
* (at your option) any later version.
*	
* DOUBANGO 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 DOUBANGO.
*
*/

#ifndef TNET_ICE_EVENT_H
#define TNET_ICE_EVENT_H

#include "tinynet_config.h"

#include "tsk_object.h"

TNET_BEGIN_DECLS

typedef enum tnet_ice_event_type_e
{
	// Public events
	tnet_ice_event_type_started,
	tnet_ice_event_type_start_failed,
	tnet_ice_event_type_stopped,
	tnet_ice_event_type_stop_failed,
	tnet_ice_event_type_gathering_host_candidates_failed,
	tnet_ice_event_type_gathering_host_candidates_succeed,
	tnet_ice_event_type_gathering_reflexive_candidates_failed,
	tnet_ice_event_type_gathering_reflexive_candidates_succeed,
	tnet_ice_event_type_gathering_relay_candidates_failed,
	tnet_ice_event_type_gathering_relay_candidates_succeed,
	tnet_ice_event_type_gathering_completed,
	tnet_ice_event_type_conncheck_succeed,
	tnet_ice_event_type_conncheck_failed,
	tnet_ice_event_type_cancelled,
	tnet_ice_event_type_turn_connection_broken,

	// Private events
	tnet_ice_event_type_action
}
tnet_ice_event_type_t;

typedef struct tnet_ice_event_s
{
	TSK_DECLARE_OBJECT;

	tnet_ice_event_type_t type;
	char* phrase;
	struct tnet_ice_action_s* action; 
	const struct tnet_ice_ctx_s* ctx;

	const void* userdata;
}
tnet_ice_event_t;

TINYNET_GEXTERN const tsk_object_def_t *tnet_ice_event_def_t;

tnet_ice_event_t* tnet_ice_event_create(const struct tnet_ice_ctx_s* ctx, tnet_ice_event_type_t type, const char* phrase, const void* userdata);
int tnet_ice_event_set_action(tnet_ice_event_t* self, struct tnet_ice_action_s* action);

TNET_END_DECLS

#endif /* TNET_ICE_EVENT_H */
OpenPOWER on IntegriCloud