EricssonResearch / openwebrtc-android-sdk

SDK for adding OpenWebRTC to your Android app
BSD 2-Clause "Simplified" License
45 stars 29 forks source link

could you tell me some thing about the openwebrtc server? #7

Closed wudimeicom closed 9 years ago

wudimeicom commented 9 years ago

could you tell me some thing about the openwebrtc server?

// must use 'url' here since Firefox doesn't understand 'urls' var configuration = { "iceServers": [ { "url": "stun:mmt-stun.verkstad.net" }, { "url": "turn:mmt-turn.verkstad.net", "username": "webrtc", "credential": "secret" } ] };

is there any open source project like the "mmt-turn.verkstad.net" ?

thank you for you reply.

best regards

Yang Qing-rong

Rugvip commented 9 years ago

If you're referring to public stun servers, then here's a list: https://gist.github.com/zziuni/3741933

If you want to host your own stun server, we've used coturn iirc: https://code.google.com/p/coturn

wudimeicom commented 9 years ago

hello , Rugvip thank you very much !