OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ |
6 #define CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ | 6 #define CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 // Initialize socket of the specified |type| and connected to the | 34 // Initialize socket of the specified |type| and connected to the |
35 // specified |address|. |address| matters only when |type| is set to | 35 // specified |address|. |address| matters only when |type| is set to |
36 // P2P_SOCKET_TCP_CLIENT. | 36 // P2P_SOCKET_TCP_CLIENT. |
37 virtual void Init(P2PSocketType type, | 37 virtual void Init(P2PSocketType type, |
38 const net::IPEndPoint& local_address, | 38 const net::IPEndPoint& local_address, |
39 const P2PHostAndIPEndPoint& remote_address, | 39 const P2PHostAndIPEndPoint& remote_address, |
40 P2PSocketClientDelegate* delegate); | 40 P2PSocketClientDelegate* delegate); |
41 | 41 |
42 // Send the |data| to the |address|. | 42 // Send the |data| to the |address|. |
43 virtual void Send(const net::IPEndPoint& address, | 43 void Send(const net::IPEndPoint& address, |
44 const std::vector<char>& data) override; | 44 const std::vector<char>& data) override; |
45 | 45 |
46 // Send the |data| to the |address| using Differentiated Services Code Point | 46 // Send the |data| to the |address| using Differentiated Services Code Point |
47 // |dscp|. | 47 // |dscp|. |
48 virtual void SendWithDscp(const net::IPEndPoint& address, | 48 void SendWithDscp(const net::IPEndPoint& address, |
49 const std::vector<char>& data, | 49 const std::vector<char>& data, |
50 const rtc::PacketOptions& options) override; | 50 const rtc::PacketOptions& options) override; |
51 | 51 |
52 // Setting socket options. | 52 // Setting socket options. |
53 virtual void SetOption(P2PSocketOption option, int value) override; | 53 void SetOption(P2PSocketOption option, int value) override; |
54 | 54 |
55 // Must be called before the socket is destroyed. The delegate may | 55 // Must be called before the socket is destroyed. The delegate may |
56 // not be called after |closed_task| is executed. | 56 // not be called after |closed_task| is executed. |
57 virtual void Close() override; | 57 void Close() override; |
58 | 58 |
59 virtual int GetSocketID() const override; | 59 int GetSocketID() const override; |
60 | 60 |
61 virtual void SetDelegate(P2PSocketClientDelegate* delegate) override; | 61 void SetDelegate(P2PSocketClientDelegate* delegate) override; |
62 | 62 |
63 private: | 63 private: |
64 enum State { | 64 enum State { |
65 STATE_UNINITIALIZED, | 65 STATE_UNINITIALIZED, |
66 STATE_OPENING, | 66 STATE_OPENING, |
67 STATE_OPEN, | 67 STATE_OPEN, |
68 STATE_CLOSED, | 68 STATE_CLOSED, |
69 STATE_ERROR, | 69 STATE_ERROR, |
70 }; | 70 }; |
71 | 71 |
72 friend class P2PSocketDispatcher; | 72 friend class P2PSocketDispatcher; |
73 | 73 |
74 virtual ~P2PSocketClientImpl(); | 74 ~P2PSocketClientImpl() override; |
75 | 75 |
76 // Message handlers that run on IPC thread. | 76 // Message handlers that run on IPC thread. |
77 void OnSocketCreated(const net::IPEndPoint& local_address, | 77 void OnSocketCreated(const net::IPEndPoint& local_address, |
78 const net::IPEndPoint& remote_address); | 78 const net::IPEndPoint& remote_address); |
79 void OnIncomingTcpConnection(const net::IPEndPoint& address); | 79 void OnIncomingTcpConnection(const net::IPEndPoint& address); |
80 void OnSendComplete(int packet_id); | 80 void OnSendComplete(int packet_id); |
81 void OnSendComplete(); | 81 void OnSendComplete(); |
82 void OnError(); | 82 void OnError(); |
83 void OnDataReceived(const net::IPEndPoint& address, | 83 void OnDataReceived(const net::IPEndPoint& address, |
84 const std::vector<char>& data, | 84 const std::vector<char>& data, |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 // These two fields are used to identify packets for tracing. | 117 // These two fields are used to identify packets for tracing. |
118 uint32 random_socket_id_; | 118 uint32 random_socket_id_; |
119 uint32 next_packet_id_; | 119 uint32 next_packet_id_; |
120 | 120 |
121 DISALLOW_COPY_AND_ASSIGN(P2PSocketClientImpl); | 121 DISALLOW_COPY_AND_ASSIGN(P2PSocketClientImpl); |
122 }; | 122 }; |
123 | 123 |
124 } // namespace content | 124 } // namespace content |
125 | 125 |
126 #endif // CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ | 126 #endif // CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ |
OLD | NEW |