mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 23:25:33 +00:00
Handle local description rollback
This commit is contained in:
@ -46,8 +46,8 @@ public:
|
||||
string typeString() const;
|
||||
Role role() const;
|
||||
string bundleMid() const;
|
||||
string iceUfrag() const;
|
||||
string icePwd() const;
|
||||
std::optional<string> iceUfrag() const;
|
||||
std::optional<string> icePwd() const;
|
||||
std::optional<string> fingerprint() const;
|
||||
bool ended() const;
|
||||
|
||||
@ -206,7 +206,7 @@ private:
|
||||
Role mRole;
|
||||
string mUsername;
|
||||
string mSessionId;
|
||||
string mIceUfrag, mIcePwd;
|
||||
std::optional<string> mIceUfrag, mIcePwd;
|
||||
std::optional<string> mFingerprint;
|
||||
|
||||
// Entries
|
||||
|
Reference in New Issue
Block a user