Index: webrtc/p2p/base/transport.h |
diff --git a/webrtc/p2p/base/transport.h b/webrtc/p2p/base/transport.h |
index dfd512fe5de611db7bde7f063ada387259a92295..21aa0d93e73a1f0324f9f9f01cc7885e902fb6a3 100644 |
--- a/webrtc/p2p/base/transport.h |
+++ b/webrtc/p2p/base/transport.h |
@@ -56,6 +56,14 @@ enum IceConnectionState { |
kIceConnectionCompleted, |
}; |
+enum DtlsTransportState { |
+ DTLS_TRANSPORT_NEW = 0, |
+ DTLS_TRANSPORT_CONNECTING, |
+ DTLS_TRANSPORT_CONNECTED, |
+ DTLS_TRANSPORT_CLOSED, |
+ DTLS_TRANSPORT_FAILED, |
+}; |
+ |
// TODO(deadbeef): Unify with PeerConnectionInterface::IceConnectionState |
// once /talk/ and /webrtc/ are combined, and also switch to ENUM_NAME naming |
// style. |