mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
parent
96e1cf8146
commit
37cb29fa8e
@ -680,11 +680,11 @@ string SdpAttrSctpMap::toString() const {
|
|||||||
void SdpAttrCandidate::parse(const string &str) {
|
void SdpAttrCandidate::parse(const string &str) {
|
||||||
char foundation_buf[40] = {0};
|
char foundation_buf[40] = {0};
|
||||||
char transport_buf[16] = {0};
|
char transport_buf[16] = {0};
|
||||||
char address_buf[8*4+7+1] = {0};
|
char address_buf[64] = {0};
|
||||||
char type_buf[16] = {0};
|
char type_buf[16] = {0};
|
||||||
|
|
||||||
// https://datatracker.ietf.org/doc/html/rfc5245#section-15.1
|
// https://datatracker.ietf.org/doc/html/rfc5245#section-15.1
|
||||||
CHECK_SDP(sscanf(str.data(), "%32[^ ] %" SCNu32 " %15[^ ] %" SCNu32 " %39[^ ] %" SCNu16 " typ %15[^ ]",
|
CHECK_SDP(sscanf(str.data(), "%32[^ ] %" SCNu32 " %15[^ ] %" SCNu32 " %63[^ ] %" SCNu16 " typ %15[^ ]",
|
||||||
foundation_buf, &component, transport_buf, &priority, address_buf, &port, type_buf) == 7);
|
foundation_buf, &component, transport_buf, &priority, address_buf, &port, type_buf) == 7);
|
||||||
foundation = foundation_buf;
|
foundation = foundation_buf;
|
||||||
transport = transport_buf;
|
transport = transport_buf;
|
||||||
|
Loading…
Reference in New Issue
Block a user