Skip to content

Commit

Permalink
Add ICE Lite status to the Janus info
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Mar 8, 2017
1 parent b01074b commit 9b042b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions janus.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ static json_t *janus_info(const char *transaction) {
if(public_ip != NULL)
json_object_set_new(info, "public-ip", json_string(public_ip));
json_object_set_new(info, "ipv6", janus_ice_is_ipv6_enabled() ? json_true() : json_false());
json_object_set_new(info, "ice-lite", janus_ice_is_ice_lite_enabled() ? json_true() : json_false());
json_object_set_new(info, "ice-tcp", janus_ice_is_ice_tcp_enabled() ? json_true() : json_false());
if(janus_ice_get_stun_server() != NULL) {
char server[255];
Expand Down

0 comments on commit 9b042b3

Please sign in to comment.