| Asterisk - The Open Source Telephony Project GIT-master-27fb039
    | 
Bridge resources. More...
#include "asterisk.h"#include "asterisk/app.h"#include "asterisk/module.h"#include "asterisk/stasis_app.h"#include "ari/resource_bridges.h"
Go to the source code of this file.
| Macros | |
| #define | MAX_VALS 128 | 
| Functions | |
| static void | __reg_module (void) | 
| static void | __unreg_module (void) | 
| static void | ast_ari_bridges_add_channel_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/addChannel. | |
| int | ast_ari_bridges_add_channel_parse_body (struct ast_json *body, struct ast_ari_bridges_add_channel_args *args) | 
| Body parsing function for /bridges/{bridgeId}/addChannel. | |
| static void | ast_ari_bridges_clear_video_source_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/videoSource. | |
| static void | ast_ari_bridges_create_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges. | |
| int | ast_ari_bridges_create_parse_body (struct ast_json *body, struct ast_ari_bridges_create_args *args) | 
| Body parsing function for /bridges. | |
| static void | ast_ari_bridges_create_with_id_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}. | |
| int | ast_ari_bridges_create_with_id_parse_body (struct ast_json *body, struct ast_ari_bridges_create_with_id_args *args) | 
| Body parsing function for /bridges/{bridgeId}. | |
| static void | ast_ari_bridges_destroy_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}. | |
| static void | ast_ari_bridges_get_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}. | |
| static void | ast_ari_bridges_list_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges. | |
| static void | ast_ari_bridges_play_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/play. | |
| int | ast_ari_bridges_play_parse_body (struct ast_json *body, struct ast_ari_bridges_play_args *args) | 
| Body parsing function for /bridges/{bridgeId}/play. | |
| static void | ast_ari_bridges_play_with_id_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/play/{playbackId}. | |
| int | ast_ari_bridges_play_with_id_parse_body (struct ast_json *body, struct ast_ari_bridges_play_with_id_args *args) | 
| Body parsing function for /bridges/{bridgeId}/play/{playbackId}. | |
| static void | ast_ari_bridges_record_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/record. | |
| int | ast_ari_bridges_record_parse_body (struct ast_json *body, struct ast_ari_bridges_record_args *args) | 
| Body parsing function for /bridges/{bridgeId}/record. | |
| static void | ast_ari_bridges_remove_channel_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/removeChannel. | |
| int | ast_ari_bridges_remove_channel_parse_body (struct ast_json *body, struct ast_ari_bridges_remove_channel_args *args) | 
| Body parsing function for /bridges/{bridgeId}/removeChannel. | |
| static void | ast_ari_bridges_set_video_source_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/videoSource/{channelId}. | |
| static void | ast_ari_bridges_start_moh_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/moh. | |
| int | ast_ari_bridges_start_moh_parse_body (struct ast_json *body, struct ast_ari_bridges_start_moh_args *args) | 
| Body parsing function for /bridges/{bridgeId}/moh. | |
| static void | ast_ari_bridges_stop_moh_cb (struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *path_vars, struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) | 
| Parameter parsing callback for /bridges/{bridgeId}/moh. | |
| struct ast_module * | AST_MODULE_SELF_SYM (void) | 
| static int | load_module (void) | 
| static int | unload_module (void) | 
| Variables | |
| static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "RESTful API module - Bridge resources" , .key = ASTERISK_GPL_KEY , .buildopt_sum = AST_BUILDOPT_SUM, .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, .requires = "res_ari,res_ari_model,res_stasis,res_stasis_recording,res_stasis_playback", } | 
| static const struct ast_module_info * | ast_module_info = &__mod_info | 
| static struct stasis_rest_handlers | bridges | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_addChannel | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_moh | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_play | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_play_playbackId | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_record | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_removeChannel | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_videoSource | 
| REST handler for /api-docs/bridges.json. | |
| static struct stasis_rest_handlers | bridges_bridgeId_videoSource_channelId | 
| REST handler for /api-docs/bridges.json. | |
Bridge resources.
Definition in file res_ari_bridges.c.
| #define MAX_VALS 128 | 
Definition at line 53 of file res_ari_bridges.c.
| 
 | static | 
Definition at line 1641 of file res_ari_bridges.c.
| 
 | static | 
Definition at line 1641 of file res_ari_bridges.c.
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/addChannel.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 471 of file res_ari_bridges.c.
References args, ARRAY_LEN, ast_app_separate_args, ast_ari_bridges_add_channel(), ast_ari_bridges_add_channel_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_void(), ast_free, ast_log, ast_malloc, ast_strdup, ast_true(), LOG_ERROR, MAX_VALS, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_add_channel_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_add_channel_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}/addChannel.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 408 of file res_ari_bridges.c.
References args, ast_free, AST_JSON_ARRAY, ast_json_array_get(), ast_json_array_size(), ast_json_is_true(), ast_json_object_get(), ast_json_string_get(), ast_json_typeof(), and ast_malloc.
Referenced by ast_ari_bridges_add_channel_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/videoSource.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 816 of file res_ari_bridges.c.
References args, ast_ari_bridges_clear_video_source(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| 
 | static | 
Parameter parsing callback for /bridges.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 137 of file res_ari_bridges.c.
References args, ast_ari_bridges_create(), ast_ari_bridges_create_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_bridge(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_create_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_create_args * | args | ||
| ) | 
Body parsing function for /bridges.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 107 of file res_ari_bridges.c.
References args, ast_json_object_get(), and ast_json_string_get().
Referenced by ast_ari_bridges_create_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 224 of file res_ari_bridges.c.
References args, ast_ari_bridges_create_with_id(), ast_ari_bridges_create_with_id_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_bridge(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_create_with_id_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_create_with_id_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 198 of file res_ari_bridges.c.
References args, ast_json_object_get(), and ast_json_string_get().
Referenced by ast_ari_bridges_create_with_id_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 357 of file res_ari_bridges.c.
References args, ast_ari_bridges_destroy(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 297 of file res_ari_bridges.c.
References args, ast_ari_bridges_get(), ast_ari_response_error(), ast_ari_validate_bridge(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| 
 | static | 
Parameter parsing callback for /bridges.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 64 of file res_ari_bridges.c.
References args, ast_ari_bridges_list(), ast_ari_response_error(), ast_ari_validate_bridge_fn(), ast_ari_validate_list(), ast_log, LOG_ERROR, ast_ari_response::message, NULL, and ast_ari_response::response_code.
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/play.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 1079 of file res_ari_bridges.c.
References args, ARRAY_LEN, ast_app_separate_args, ast_ari_bridges_play(), ast_ari_bridges_play_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_playback(), ast_free, ast_log, ast_malloc, ast_strdup, LOG_ERROR, MAX_VALS, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_play_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_play_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}/play.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 1012 of file res_ari_bridges.c.
References args, ast_free, AST_JSON_ARRAY, ast_json_array_get(), ast_json_array_size(), ast_json_integer_get(), ast_json_object_get(), ast_json_string_get(), ast_json_typeof(), and ast_malloc.
Referenced by ast_ari_bridges_play_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/play/{playbackId}.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 1262 of file res_ari_bridges.c.
References args, ARRAY_LEN, ast_app_separate_args, ast_ari_bridges_play_with_id(), ast_ari_bridges_play_with_id_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_playback(), ast_free, ast_log, ast_malloc, ast_strdup, LOG_ERROR, MAX_VALS, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_play_with_id_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_play_with_id_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}/play/{playbackId}.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 1199 of file res_ari_bridges.c.
References args, ast_free, AST_JSON_ARRAY, ast_json_array_get(), ast_json_array_size(), ast_json_integer_get(), ast_json_object_get(), ast_json_string_get(), ast_json_typeof(), and ast_malloc.
Referenced by ast_ari_bridges_play_with_id_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/record.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 1432 of file res_ari_bridges.c.
References args, ast_ari_bridges_record(), ast_ari_bridges_record_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_live_recording(), ast_log, ast_true(), LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_record_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_record_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}/record.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 1382 of file res_ari_bridges.c.
References args, ast_json_integer_get(), ast_json_is_true(), ast_json_object_get(), and ast_json_string_get().
Referenced by ast_ari_bridges_record_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/removeChannel.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 636 of file res_ari_bridges.c.
References args, ARRAY_LEN, ast_app_separate_args, ast_ari_bridges_remove_channel(), ast_ari_bridges_remove_channel_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_void(), ast_free, ast_log, ast_malloc, ast_strdup, LOG_ERROR, MAX_VALS, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_remove_channel_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_remove_channel_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}/removeChannel.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 589 of file res_ari_bridges.c.
References args, ast_free, AST_JSON_ARRAY, ast_json_array_get(), ast_json_array_size(), ast_json_object_get(), ast_json_string_get(), ast_json_typeof(), and ast_malloc.
Referenced by ast_ari_bridges_remove_channel_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/videoSource/{channelId}.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 751 of file res_ari_bridges.c.
References args, ast_ari_bridges_set_video_source(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/moh.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 889 of file res_ari_bridges.c.
References args, ast_ari_bridges_start_moh(), ast_ari_bridges_start_moh_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| int ast_ari_bridges_start_moh_parse_body | ( | struct ast_json * | body, | 
| struct ast_ari_bridges_start_moh_args * | args | ||
| ) | 
Body parsing function for /bridges/{bridgeId}/moh.
| body | The JSON body from which to parse parameters. | |
| [out] | args | The args structure to parse into. | 
| zero | on success | 
| non-zero | on failure | 
Definition at line 867 of file res_ari_bridges.c.
References args, ast_json_object_get(), and ast_json_string_get().
Referenced by ast_ari_bridges_start_moh_cb().
| 
 | static | 
Parameter parsing callback for /bridges/{bridgeId}/moh.
| ser | TCP/TLS session object | |
| get_params | GET parameters in the HTTP request. | |
| path_vars | Path variables extracted from the request. | |
| headers | HTTP headers. | |
| body | ||
| [out] | response | Response to the HTTP request. | 
Definition at line 960 of file res_ari_bridges.c.
References args, ast_ari_bridges_stop_moh(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, and ast_variable::value.
| struct ast_module * AST_MODULE_SELF_SYM | ( | void | ) | 
Definition at line 1641 of file res_ari_bridges.c.
| 
 | static | 
Definition at line 1622 of file res_ari_bridges.c.
References ast_ari_add_handler(), AST_MODULE_LOAD_DECLINE, AST_MODULE_LOAD_SUCCESS, bridges, and unload_module().
| 
 | static | 
Definition at line 1616 of file res_ari_bridges.c.
References ast_ari_remove_handler(), and bridges.
Referenced by load_module().
| 
 | static | 
Definition at line 1641 of file res_ari_bridges.c.
| 
 | static | 
Definition at line 1641 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1606 of file res_ari_bridges.c.
Referenced by load_module(), and unload_module().
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1594 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1519 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1556 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1576 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1566 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1585 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1528 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1547 of file res_ari_bridges.c.
| 
 | static | 
REST handler for /api-docs/bridges.json.
Definition at line 1537 of file res_ari_bridges.c.