Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Side by Side Diff: content/browser/renderer_host/p2p/socket_host_tcp.h

Issue 159353002: This CL adds methods to manipulate RTP header extension, particularly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 const talk_base::PacketOptions& options, 45 const talk_base::PacketOptions& options,
46 uint64 packet_id) OVERRIDE; 46 uint64 packet_id) OVERRIDE;
47 virtual P2PSocketHost* AcceptIncomingTcpConnection( 47 virtual P2PSocketHost* AcceptIncomingTcpConnection(
48 const net::IPEndPoint& remote_address, int id) OVERRIDE; 48 const net::IPEndPoint& remote_address, int id) OVERRIDE;
49 virtual bool SetOption(P2PSocketOption option, int value) OVERRIDE; 49 virtual bool SetOption(P2PSocketOption option, int value) OVERRIDE;
50 50
51 protected: 51 protected:
52 // Derived classes will provide the implementation. 52 // Derived classes will provide the implementation.
53 virtual int ProcessInput(char* input, int input_len) = 0; 53 virtual int ProcessInput(char* input, int input_len) = 0;
54 virtual void DoSend(const net::IPEndPoint& to, 54 virtual void DoSend(const net::IPEndPoint& to,
55 const std::vector<char>& data) = 0; 55 const std::vector<char>& data,
56 const talk_base::PacketOptions& options) = 0;
56 57
57 void WriteOrQueue(scoped_refptr<net::DrainableIOBuffer>& buffer); 58 void WriteOrQueue(scoped_refptr<net::DrainableIOBuffer>& buffer);
58 void OnPacket(const std::vector<char>& data); 59 void OnPacket(const std::vector<char>& data);
59 void OnError(); 60 void OnError();
60 61
61 private: 62 private:
62 friend class P2PSocketHostTcpTestBase; 63 friend class P2PSocketHostTcpTestBase;
63 friend class P2PSocketHostTcpServerTest; 64 friend class P2PSocketHostTcpServerTest;
64 65
65 // SSL/TLS connection functions. 66 // SSL/TLS connection functions.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 public: 102 public:
102 P2PSocketHostTcp(IPC::Sender* message_sender, 103 P2PSocketHostTcp(IPC::Sender* message_sender,
103 int id, 104 int id,
104 P2PSocketType type, 105 P2PSocketType type,
105 net::URLRequestContextGetter* url_context); 106 net::URLRequestContextGetter* url_context);
106 virtual ~P2PSocketHostTcp(); 107 virtual ~P2PSocketHostTcp();
107 108
108 protected: 109 protected:
109 virtual int ProcessInput(char* input, int input_len) OVERRIDE; 110 virtual int ProcessInput(char* input, int input_len) OVERRIDE;
110 virtual void DoSend(const net::IPEndPoint& to, 111 virtual void DoSend(const net::IPEndPoint& to,
111 const std::vector<char>& data) OVERRIDE; 112 const std::vector<char>& data,
113 const talk_base::PacketOptions& options) OVERRIDE;
112 private: 114 private:
113 DISALLOW_COPY_AND_ASSIGN(P2PSocketHostTcp); 115 DISALLOW_COPY_AND_ASSIGN(P2PSocketHostTcp);
114 }; 116 };
115 117
116 // P2PSocketHostStunTcp class provides the framing of STUN messages when used 118 // P2PSocketHostStunTcp class provides the framing of STUN messages when used
117 // with TURN. These messages will not have length at front of the packet and 119 // with TURN. These messages will not have length at front of the packet and
118 // are padded to multiple of 4 bytes. 120 // are padded to multiple of 4 bytes.
119 // Formatting of messages is defined in RFC5766. 121 // Formatting of messages is defined in RFC5766.
120 class CONTENT_EXPORT P2PSocketHostStunTcp : public P2PSocketHostTcpBase { 122 class CONTENT_EXPORT P2PSocketHostStunTcp : public P2PSocketHostTcpBase {
121 public: 123 public:
122 P2PSocketHostStunTcp(IPC::Sender* message_sender, 124 P2PSocketHostStunTcp(IPC::Sender* message_sender,
123 int id, 125 int id,
124 P2PSocketType type, 126 P2PSocketType type,
125 net::URLRequestContextGetter* url_context); 127 net::URLRequestContextGetter* url_context);
126 128
127 virtual ~P2PSocketHostStunTcp(); 129 virtual ~P2PSocketHostStunTcp();
128 130
129 protected: 131 protected:
130 virtual int ProcessInput(char* input, int input_len) OVERRIDE; 132 virtual int ProcessInput(char* input, int input_len) OVERRIDE;
131 virtual void DoSend(const net::IPEndPoint& to, 133 virtual void DoSend(const net::IPEndPoint& to,
132 const std::vector<char>& data) OVERRIDE; 134 const std::vector<char>& data,
135 const talk_base::PacketOptions& options) OVERRIDE;
133 private: 136 private:
134 int GetExpectedPacketSize(const char* data, int len, int* pad_bytes); 137 int GetExpectedPacketSize(const char* data, int len, int* pad_bytes);
135 138
136 DISALLOW_COPY_AND_ASSIGN(P2PSocketHostStunTcp); 139 DISALLOW_COPY_AND_ASSIGN(P2PSocketHostStunTcp);
137 }; 140 };
138 141
139 142
140 } // namespace content 143 } // namespace content
141 144
142 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_H_ 145 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TCP_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/p2p/socket_host.cc ('k') | content/browser/renderer_host/p2p/socket_host_tcp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698