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

Side by Side Diff: net/tools/quic/test_tools/quic_server_peer.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "net/tools/quic/test_tools/quic_server_peer.h"
6
7 #include "net/tools/quic/quic_dispatcher.h"
8 #include "net/tools/quic/quic_server.h"
9
10 namespace net {
11 namespace tools {
12 namespace test {
13
14 // static
15 bool QuicServerPeer::SetSmallSocket(QuicServer* server) {
16 int size = 1024 * 10;
17 return setsockopt(
18 server->fd_, SOL_SOCKET, SO_RCVBUF, &size, sizeof(size)) != -1;
19 }
20
21 // static
22 void QuicServerPeer::DisableRecvmmsg(QuicServer* server) {
23 server->use_recvmmsg_ = false;
24 }
25
26 // static
27 QuicDispatcher* QuicServerPeer::GetDispatcher(QuicServer* server) {
28 return server->dispatcher_.get();
29 }
30
31 } // namespace test
32 } // namespace tools
33 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/quic/test_tools/quic_server_peer.h ('k') | net/tools/quic/test_tools/quic_test_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698