-
-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add callback for unhandled STUN requests
Calls the functions added to libjuice in paullouisageneau/libjuice#248 Exports a `OnUnhandledStunRequest` function that can be passed a callback that will be invoked when an incoming STUN message is received that has no corresponding agent for the ICE ufrag. Closes #1166
- Loading branch information
1 parent
054cd65
commit 311fea0
Showing
4 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
Submodule libjuice
updated
9 files
+13 −0 | include/juice/juice.h | |
+8 −4 | src/agent.c | |
+67 −1 | src/conn.c | |
+2 −0 | src/conn.h | |
+34 −8 | src/conn_mux.c | |
+1 −0 | src/conn_mux.h | |
+1 −0 | src/conn_poll.c | |
+1 −0 | src/conn_thread.c | |
+9 −11 | src/juice.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters