OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 rtc::SocketAddress GetLocalAddress() const; | 80 rtc::SocketAddress GetLocalAddress() const; |
81 | 81 |
82 bool ready() const { return state_ == STATE_READY; } | 82 bool ready() const { return state_ == STATE_READY; } |
83 bool connected() const { | 83 bool connected() const { |
84 return state_ == STATE_READY || state_ == STATE_CONNECTED; | 84 return state_ == STATE_READY || state_ == STATE_CONNECTED; |
85 } | 85 } |
86 const RelayCredentials& credentials() const { return credentials_; } | 86 const RelayCredentials& credentials() const { return credentials_; } |
87 | 87 |
88 virtual ProtocolType GetProtocol() const { return server_address_.proto; } | 88 virtual ProtocolType GetProtocol() const { return server_address_.proto; } |
89 | 89 |
| 90 virtual TlsCertPolicy GetTlsCertPolicy() const { return tls_cert_policy_; } |
| 91 |
| 92 virtual void SetTlsCertPolicy(TlsCertPolicy tls_cert_policy) { |
| 93 tls_cert_policy_ = tls_cert_policy; |
| 94 } |
| 95 |
90 virtual void PrepareAddress(); | 96 virtual void PrepareAddress(); |
91 virtual Connection* CreateConnection( | 97 virtual Connection* CreateConnection( |
92 const Candidate& c, PortInterface::CandidateOrigin origin); | 98 const Candidate& c, PortInterface::CandidateOrigin origin); |
93 virtual int SendTo(const void* data, size_t size, | 99 virtual int SendTo(const void* data, size_t size, |
94 const rtc::SocketAddress& addr, | 100 const rtc::SocketAddress& addr, |
95 const rtc::PacketOptions& options, | 101 const rtc::PacketOptions& options, |
96 bool payload); | 102 bool payload); |
97 virtual int SetOption(rtc::Socket::Option opt, int value); | 103 virtual int SetOption(rtc::Socket::Option opt, int value); |
98 virtual int GetOption(rtc::Socket::Option opt, int* value); | 104 virtual int GetOption(rtc::Socket::Option opt, int* value); |
99 virtual int GetError(); | 105 virtual int GetError(); |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 // in |entry|. | 254 // in |entry|. |
249 void DestroyEntryIfNotCancelled(TurnEntry* entry, int64_t timestamp); | 255 void DestroyEntryIfNotCancelled(TurnEntry* entry, int64_t timestamp); |
250 void ScheduleEntryDestruction(TurnEntry* entry); | 256 void ScheduleEntryDestruction(TurnEntry* entry); |
251 void CancelEntryDestruction(TurnEntry* entry); | 257 void CancelEntryDestruction(TurnEntry* entry); |
252 | 258 |
253 // Marks the connection with remote address |address| failed and | 259 // Marks the connection with remote address |address| failed and |
254 // pruned (a.k.a. write-timed-out). Returns true if a connection is found. | 260 // pruned (a.k.a. write-timed-out). Returns true if a connection is found. |
255 bool FailAndPruneConnection(const rtc::SocketAddress& address); | 261 bool FailAndPruneConnection(const rtc::SocketAddress& address); |
256 | 262 |
257 ProtocolAddress server_address_; | 263 ProtocolAddress server_address_; |
| 264 TlsCertPolicy tls_cert_policy_ = TlsCertPolicy::TLS_CERT_POLICY_SECURE; |
258 RelayCredentials credentials_; | 265 RelayCredentials credentials_; |
259 AttemptedServerSet attempted_server_addresses_; | 266 AttemptedServerSet attempted_server_addresses_; |
260 | 267 |
261 rtc::AsyncPacketSocket* socket_; | 268 rtc::AsyncPacketSocket* socket_; |
262 SocketOptionsMap socket_options_; | 269 SocketOptionsMap socket_options_; |
263 rtc::AsyncResolverInterface* resolver_; | 270 rtc::AsyncResolverInterface* resolver_; |
264 int error_; | 271 int error_; |
265 | 272 |
266 StunRequestManager request_manager_; | 273 StunRequestManager request_manager_; |
267 std::string realm_; // From 401/438 response message. | 274 std::string realm_; // From 401/438 response message. |
(...skipping 16 matching lines...) Expand all Loading... |
284 friend class TurnEntry; | 291 friend class TurnEntry; |
285 friend class TurnAllocateRequest; | 292 friend class TurnAllocateRequest; |
286 friend class TurnRefreshRequest; | 293 friend class TurnRefreshRequest; |
287 friend class TurnCreatePermissionRequest; | 294 friend class TurnCreatePermissionRequest; |
288 friend class TurnChannelBindRequest; | 295 friend class TurnChannelBindRequest; |
289 }; | 296 }; |
290 | 297 |
291 } // namespace cricket | 298 } // namespace cricket |
292 | 299 |
293 #endif // WEBRTC_P2P_BASE_TURNPORT_H_ | 300 #endif // WEBRTC_P2P_BASE_TURNPORT_H_ |
OLD | NEW |