-
-
Notifications
You must be signed in to change notification settings - Fork 98
Description
Several questions on how to use the library (as an agent only):
-
When do I call juice_get_local_description? Can I call it immediately after juice_create or should I give the agent some time for connecting to the stun server?
-
Can I call juice_get_local_description on both agents before calling any juice_set_remote_description? Or do I always have to wait with one agent to receive description from the first agent?
-
Can or should I call juice_set_remote_description repeatedly on same agent? Should I repeatedly exchange descriptions between agents?
-
When do I call juice_gather_candidates? Do I always call it immediately after first juice_set_remote_description, or are there any reasons to delay it or not to call it?
-
After the agent is completed, do I have to use juice_send for my connection, or can I use juice_get_selected_addresses and create new socket for my communication?
-
Which, if any, juice functions block?
-
Are there any observable differences for me for using different concurrency models?
Thanks for your help ;)