Skip to content

Commit

Permalink
feat: expose juice_mux_stop_listen function
Browse files Browse the repository at this point in the history
This is a follow-up to paullouisageneau#248 that just adds the `juice_mux_stop_listen`
function to `juice.h` in order to invoke it from libdatachannel.
  • Loading branch information
achingbrain committed Jan 14, 2025
1 parent 2fb91a3 commit f012414
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/juice/juice.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ JUICE_EXPORT int juice_get_selected_addresses(juice_agent_t *agent, char *local,
JUICE_EXPORT int juice_set_local_ice_attributes(juice_agent_t *agent, const char *ufrag, const char *pwd);
JUICE_EXPORT const char *juice_state_to_string(juice_state_t state);
JUICE_EXPORT int juice_mux_listen(const char *bind_address, int local_port, juice_cb_mux_incoming_t cb, void *user_ptr);
JUICE_EXPORT int juice_mux_stop_listen(const char *bind_address, int local_port);

// ICE server

Expand Down

0 comments on commit f012414

Please sign in to comment.