Skip to content

Commit 7056789

Browse files
Merge pull request #768 from paullouisageneau/candidate-change-address
Add Candidate::changeAddress()
2 parents d445439 + ea63836 commit 7056789

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

include/rtc/candidate.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ class RTC_CPP_EXPORT Candidate {
3636
Candidate(string candidate, string mid);
3737

3838
void hintMid(string mid);
39+
void changeAddress(string addr);
40+
void changeAddress(string addr, uint16_t port);
41+
void changeAddress(string addr, string service);
3942

4043
enum class ResolveMode { Simple, Lookup };
4144
bool resolve(ResolveMode mode = ResolveMode::Simple);

src/candidate.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,24 @@ void Candidate::hintMid(string mid) {
140140
mMid.emplace(std::move(mid));
141141
}
142142

143+
void Candidate::changeAddress(string addr) { changeAddress(std::move(addr), mService); }
144+
145+
void Candidate::changeAddress(string addr, uint16_t port) {
146+
changeAddress(std::move(addr), std::to_string(port));
147+
}
148+
149+
void Candidate::changeAddress(string addr, string service) {
150+
mNode = std::move(addr);
151+
mService = std::move(service);
152+
153+
mFamily = Family::Unresolved;
154+
mAddress.clear();
155+
mPort = 0;
156+
157+
if (!resolve(ResolveMode::Simple))
158+
throw std::invalid_argument("Invalid candidate address \"" + addr + ":" + service + "\"");
159+
}
160+
143161
bool Candidate::resolve(ResolveMode mode) {
144162
PLOG_VERBOSE << "Resolving candidate (mode="
145163
<< (mode == ResolveMode::Simple ? "simple" : "lookup") << "): " << mNode << ' '

0 commit comments

Comments
 (0)