Skip to content

Commit

Permalink
feat: Add support for reflecting STUN requests from unbound clients.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Jul 4, 2024
1 parent 20755dc commit 9ede09b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conn_mux.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@ static juice_agent_t *lookup_agent(conn_registry_t *registry, char *buf, size_t

juice_mux_incoming_t incoming_info;

incoming_info.remote_ufrag = username;
incoming_info.local_ufrag = separator + 1;
incoming_info.local_ufrag = local_ufrag;
incoming_info.remote_ufrag = separator + 1;
incoming_info.address = host;
incoming_info.port = addr_get_port((struct sockaddr *)src);

Expand Down

0 comments on commit 9ede09b

Please sign in to comment.