Chromium Code Reviews

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

Issue 2568833002: Refactor "secure bool" into explicit PROTO_TLS. (Closed)
Patch Set: 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/portinterface.h
diff --git a/webrtc/p2p/base/portinterface.h b/webrtc/p2p/base/portinterface.h
index e08e791f1a2ed9daec5cdd5a77771b5a33caa259..4a6e9007ed94a8bdea751e5b9ca015629a54a9cf 100644
--- a/webrtc/p2p/base/portinterface.h
+++ b/webrtc/p2p/base/portinterface.h
@@ -30,8 +30,9 @@ class StunMessage;
enum ProtocolType {
PROTO_UDP,
PROTO_TCP,
- PROTO_SSLTCP,
- PROTO_LAST = PROTO_SSLTCP
+ PROTO_SSLTCP, // Pseudo-TLS.
+ PROTO_TLS,
+ PROTO_LAST = PROTO_TLS
};
// Defines the interface for a port, which represents a local communication

Powered by Google App Engine