Implement MatrixAPI.get_turn_server

This commit is contained in:
Gergely Polonkai 2016-01-22 16:00:20 +01:00
parent 3993bb112c
commit 04b02d4d5a
1 changed files with 14 additions and 1 deletions

View File

@ -2739,6 +2739,19 @@ i_add_room_tag(MatrixAPI *api,
g_free(path);
}
static void
i_get_turn_server(MatrixAPI *api,
MatrixAPICallback callback,
gpointer user_data,
GError **error)
{
_send(MATRIX_HTTP_API(api),
callback, user_data,
CALL_API,
"GET", "void/turnServer", NULL, NULL, NULL, NULL,
FALSE, error);
}
static void
matrix_http_api_matrix_api_init(MatrixAPIInterface *iface)
{
@ -2831,7 +2844,7 @@ matrix_http_api_matrix_api_init(MatrixAPIInterface *iface)
iface->add_room_tag = i_add_room_tag;
/* VoIP */
iface->get_turn_server = NULL;
iface->get_turn_server = i_get_turn_server;
/* Non-spec methods */
iface->abort_pending = NULL;