Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: webrtc/p2p/base/sessiondescription.h

Issue 2742903002: Parse the connection data in SDP (c= line). (Closed)
Patch Set: Parse the c= line. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/pc/mediasession.h » ('j') | webrtc/pc/mediasession.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/sessiondescription.h
diff --git a/webrtc/p2p/base/sessiondescription.h b/webrtc/p2p/base/sessiondescription.h
index a20f7b71321a9b0cfd395bcd55c701775879a200..2cde4fb77bafcc3ecc381abc95fc761a52a30388 100644
--- a/webrtc/p2p/base/sessiondescription.h
+++ b/webrtc/p2p/base/sessiondescription.h
@@ -14,8 +14,10 @@
#include <string>
#include <vector>
-#include "webrtc/p2p/base/transportinfo.h"
#include "webrtc/base/constructormagic.h"
+#include "webrtc/base/optional.h"
+#include "webrtc/base/socketaddress.h"
+#include "webrtc/p2p/base/transportinfo.h"
namespace cricket {
@@ -180,11 +182,23 @@ class SessionDescription {
void set_msid_supported(bool supported) { msid_supported_ = supported; }
bool msid_supported() const { return msid_supported_; }
+ void set_session_connection_addr(
Taylor Brandstetter 2017/03/10 22:41:17 I think it would be simpler to only store this add
Zhi Huang 2017/03/15 04:04:59 Done.
+ const rtc::Optional<rtc::SocketAddress>& addr) {
+ session_connection_addr_ = addr;
+ }
+ rtc::Optional<rtc::SocketAddress> session_connection_addr() {
+ return session_connection_addr_;
+ }
+
private:
ContentInfos contents_;
TransportInfos transport_infos_;
ContentGroups content_groups_;
bool msid_supported_ = true;
+ // https://tools.ietf.org/html/rfc4566#page-21
+ // The session level connection data indicating the address of the remote
+ // endpoint.
+ rtc::Optional<rtc::SocketAddress> session_connection_addr_;
};
// Indicates whether a ContentDescription was an offer or an answer, as
« no previous file with comments | « no previous file | webrtc/pc/mediasession.h » ('j') | webrtc/pc/mediasession.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698