mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 23:25:33 +00:00
Code formatting
This commit is contained in:
@ -66,7 +66,7 @@ void test_turn_connectivity() {
|
||||
return;
|
||||
// For this test, filter out non-relay candidates to force TURN
|
||||
string str(candidate);
|
||||
if(str.find("relay") != string::npos) {
|
||||
if (str.find("relay") != string::npos) {
|
||||
cout << "Candidate 1: " << str << endl;
|
||||
pc2->addRemoteCandidate(str);
|
||||
}
|
||||
@ -96,7 +96,7 @@ void test_turn_connectivity() {
|
||||
return;
|
||||
// For this test, filter out non-relay candidates to force TURN
|
||||
string str(candidate);
|
||||
if(str.find("relay") != string::npos) {
|
||||
if (str.find("relay") != string::npos) {
|
||||
cout << "Candidate 1: " << str << endl;
|
||||
pc1->addRemoteCandidate(str);
|
||||
}
|
||||
|
Reference in New Issue
Block a user