Skip to content

Commit 41f4d88

Browse files
committed
fix: throw error if setting ice attributes fails
1 parent 6276303 commit 41f4d88

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/impl/icetransport.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ IceTransport::IceTransport(const Configuration &config, candidate_callback candi
141141
}
142142

143143
void IceTransport::setIceAttributes(string uFrag, string pwd) {
144-
juice_set_local_ice_attributes(mAgent.get(), uFrag.c_str(), pwd.c_str());
144+
if (juice_set_local_ice_attributes(mAgent.get(), uFrag.c_str(), pwd.c_str()) < 0) {
145+
throw std::invalid_argument("Invalid ICE attributes");
146+
}
145147
}
146148

147149
void IceTransport::addIceServer(IceServer server) {

0 commit comments

Comments
 (0)