You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void
SipccSdpAttributeList::SetAttribute(SdpAttribute* attr) {
if (attr->GetType() == SdpAttribute::kOtherAttribute) {
mOtherAttributes.push_back(attr);
} else {
// TODO: Should we be willing to set attributes somewhere they are not
// allowed?
RemoveAttribute(attr->GetType());
mAttributes[attr->GetType()] = attr;
}
}
The text was updated successfully, but these errors were encountered:
void
SipccSdpAttributeList::SetAttribute(SdpAttribute* attr) {
if (attr->GetType() == SdpAttribute::kOtherAttribute) {
mOtherAttributes.push_back(attr);
} else {
// TODO: Should we be willing to set attributes somewhere they are not
// allowed?
RemoveAttribute(attr->GetType());
mAttributes[attr->GetType()] = attr;
}
}
The text was updated successfully, but these errors were encountered: