| 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 23 matching lines...) Expand all Loading... |
| 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 virtual 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 virtual 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 virtual 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 virtual void Close() override; |
| 58 | 58 |
| 59 virtual int GetSocketID() const OVERRIDE; | 59 virtual int GetSocketID() const override; |
| 60 | 60 |
| 61 virtual void SetDelegate(P2PSocketClientDelegate* delegate) OVERRIDE; | 61 virtual 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 |
| (...skipping 45 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 |