Chromium Code Reviews

Unified Diff: webrtc/p2p/base/port.cc

Issue 2557803002: Add disabled certificate check support to IceServer PeerConnection API. (Closed)
Patch Set: Add disabled certificate check support to IceServer PeerConnection API. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/p2p/base/port.cc
diff --git a/webrtc/p2p/base/port.cc b/webrtc/p2p/base/port.cc
index b9ead32b543525ae571e46b72d1ab392c2d5afda..eb63436dc8d83806e60d12aab074a5bf0094e4ee 100644
--- a/webrtc/p2p/base/port.cc
+++ b/webrtc/p2p/base/port.cc
@@ -89,10 +89,11 @@ const char RELAY_PORT_TYPE[] = "relay";
const char UDP_PROTOCOL_NAME[] = "udp";
const char TCP_PROTOCOL_NAME[] = "tcp";
const char SSLTCP_PROTOCOL_NAME[] = "ssltcp";
+const char TLS_PROTOCOL_NAME[] = "tls";
-static const char* const PROTO_NAMES[] = { UDP_PROTOCOL_NAME,
- TCP_PROTOCOL_NAME,
- SSLTCP_PROTOCOL_NAME };
+static const char* const PROTO_NAMES[] = {UDP_PROTOCOL_NAME, TCP_PROTOCOL_NAME,
+ SSLTCP_PROTOCOL_NAME,
+ TLS_PROTOCOL_NAME};
pthatcher1 2016/12/07 21:29:35 We should probably document what these things mean
Taylor Brandstetter 2016/12/08 01:36:40 I agree about documenting what these things mean.
hnsl1 2016/12/12 16:08:13 I agree there are different meanings here that sho
const char* ProtoToString(ProtocolType proto) {
return PROTO_NAMES[proto];

Powered by Google App Engine