This commit is contained in:
ziyue
2021-04-01 10:35:31 +08:00
parent 868b379a12
commit 83208b0b31
4 changed files with 87 additions and 9 deletions

View File

@@ -282,6 +282,10 @@ public:
class SdpAttrIceOption : public SdpItem {
public:
//a=ice-options:trickle
bool trickle{false};
bool renomination{false};
void parse(const string &str) override;
string toString() const override;
const char* getKey() const override { return "ice-options";}
};