OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 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 |
11 #ifndef WEBRTC_P2P_BASE_TRANSPORTCHANNEL_H_ | 11 #ifndef WEBRTC_P2P_BASE_TRANSPORTCHANNEL_H_ |
12 #define WEBRTC_P2P_BASE_TRANSPORTCHANNEL_H_ | 12 #define WEBRTC_P2P_BASE_TRANSPORTCHANNEL_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 #include <string> | 15 #include <string> |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "webrtc/base/constructormagic.h" | |
19 #include "webrtc/p2p/base/candidate.h" | |
20 #include "webrtc/p2p/base/candidatepairinterface.h" | |
21 #include "webrtc/p2p/base/packettransportinterface.h" | |
22 #include "webrtc/p2p/base/jseptransport.h" | |
23 #include "webrtc/p2p/base/transportdescription.h" | |
24 #include "webrtc/base/asyncpacketsocket.h" | 18 #include "webrtc/base/asyncpacketsocket.h" |
25 #include "webrtc/base/basictypes.h" | 19 #include "webrtc/base/basictypes.h" |
| 20 #include "webrtc/base/constructormagic.h" |
26 #include "webrtc/base/dscp.h" | 21 #include "webrtc/base/dscp.h" |
27 #include "webrtc/base/sigslot.h" | 22 #include "webrtc/base/sigslot.h" |
28 #include "webrtc/base/socket.h" | 23 #include "webrtc/base/socket.h" |
29 #include "webrtc/base/sslidentity.h" | 24 #include "webrtc/base/sslidentity.h" |
30 #include "webrtc/base/sslstreamadapter.h" | 25 #include "webrtc/base/sslstreamadapter.h" |
| 26 #include "webrtc/p2p/base/candidate.h" |
| 27 #include "webrtc/p2p/base/candidatepairinterface.h" |
| 28 #include "webrtc/p2p/base/jseptransport.h" |
| 29 #include "webrtc/p2p/base/icetransportinternal.h" |
| 30 #include "webrtc/p2p/base/packettransportinterface.h" |
| 31 #include "webrtc/p2p/base/transportdescription.h" |
31 | 32 |
32 namespace cricket { | 33 namespace cricket { |
33 | 34 |
34 class Candidate; | 35 class Candidate; |
35 | 36 |
36 // Flags for SendPacket/SignalReadPacket. | 37 // Flags for SendPacket/SignalReadPacket. |
37 enum PacketFlags { | 38 enum PacketFlags { |
38 PF_NORMAL = 0x00, // A normal packet. | 39 PF_NORMAL = 0x00, // A normal packet. |
39 PF_SRTP_BYPASS = 0x01, // An encrypted SRTP packet; bypass any additional | 40 PF_SRTP_BYPASS = 0x01, // An encrypted SRTP packet; bypass any additional |
40 // crypto provided by the transport (e.g. DTLS) | 41 // crypto provided by the transport (e.g. DTLS) |
41 }; | 42 }; |
42 | 43 |
43 // Used to indicate channel's connection state. | |
44 enum TransportChannelState { | |
45 STATE_INIT, | |
46 STATE_CONNECTING, // Will enter this state once a connection is created | |
47 STATE_COMPLETED, | |
48 STATE_FAILED | |
49 }; | |
50 | |
51 // A TransportChannel represents one logical stream of packets that are sent | 44 // A TransportChannel represents one logical stream of packets that are sent |
52 // between the two sides of a session. | 45 // between the two sides of a session. |
53 // TODO(deadbeef): This interface currently represents the unity of an ICE | 46 // TODO(deadbeef): This interface currently represents the unity of an ICE |
54 // transport and a DTLS transport. They need to be separated apart. | 47 // transport and a DTLS transport. They need to be separated apart. |
55 class TransportChannel : public rtc::PacketTransportInterface { | 48 class TransportChannel : public rtc::PacketTransportInterface { |
56 public: | 49 public: |
57 TransportChannel(const std::string& transport_name, int component) | 50 TransportChannel(const std::string& transport_name, int component) |
58 : transport_name_(transport_name), | 51 : transport_name_(transport_name), |
59 component_(component), | 52 component_(component), |
60 writable_(false), | 53 writable_(false), |
61 receiving_(false) {} | 54 receiving_(false) {} |
62 virtual ~TransportChannel() {} | 55 virtual ~TransportChannel() {} |
63 | 56 |
64 // TODO(guoweis) - Make this pure virtual once all subclasses of | 57 // TODO(guoweis) - Make this pure virtual once all subclasses of |
65 // TransportChannel have this defined. | 58 // TransportChannel have this defined. |
66 virtual TransportChannelState GetState() const { | 59 virtual IceTransportState GetState() const { |
67 return TransportChannelState::STATE_CONNECTING; | 60 return IceTransportState::STATE_CONNECTING; |
68 } | 61 } |
69 | 62 |
70 const std::string& transport_name() const { return transport_name_; } | 63 const std::string& transport_name() const { return transport_name_; } |
71 int component() const { return component_; } | 64 int component() const { return component_; } |
72 const std::string debug_name() const override { | 65 std::string debug_name() const override { |
73 return transport_name() + " " + std::to_string(component()); | 66 return transport_name() + " " + std::to_string(component()); |
74 } | 67 } |
75 | 68 |
76 // Returns the states of this channel. Each time one of these states changes, | 69 // Returns the states of this channel. Each time one of these states changes, |
77 // a signal is raised. These states are aggregated by the TransportManager. | 70 // a signal is raised. These states are aggregated by the TransportManager. |
78 bool writable() const override { return writable_; } | 71 bool writable() const override { return writable_; } |
79 bool receiving() const override { return receiving_; } | 72 bool receiving() const override { return receiving_; } |
80 DtlsTransportState dtls_state() const { return dtls_state_; } | 73 DtlsTransportState dtls_state() const { return dtls_state_; } |
81 // Emitted whenever DTLS-SRTP is setup which will require setting up a new | 74 // Emitted whenever DTLS-SRTP is setup which will require setting up a new |
82 // SRTP context. | 75 // SRTP context. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 bool writable_; | 154 bool writable_; |
162 bool receiving_; | 155 bool receiving_; |
163 DtlsTransportState dtls_state_ = DTLS_TRANSPORT_NEW; | 156 DtlsTransportState dtls_state_ = DTLS_TRANSPORT_NEW; |
164 | 157 |
165 RTC_DISALLOW_COPY_AND_ASSIGN(TransportChannel); | 158 RTC_DISALLOW_COPY_AND_ASSIGN(TransportChannel); |
166 }; | 159 }; |
167 | 160 |
168 } // namespace cricket | 161 } // namespace cricket |
169 | 162 |
170 #endif // WEBRTC_P2P_BASE_TRANSPORTCHANNEL_H_ | 163 #endif // WEBRTC_P2P_BASE_TRANSPORTCHANNEL_H_ |
OLD | NEW |