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

Side by Side Diff: net/tools/quic/quic_packet_reader.cc

Issue 2820423002: Move quic_flags.h from net/quic/core to net/quic/platform and split into api and impl. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « net/tools/quic/quic_dispatcher_test.cc ('k') | net/tools/quic/quic_server.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "net/tools/quic/quic_packet_reader.h" 5 #include "net/tools/quic/quic_packet_reader.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 #ifndef __APPLE__ 8 #ifndef __APPLE__
9 // This is a GNU header that is not present in /usr/include on MacOS 9 // This is a GNU header that is not present in /usr/include on MacOS
10 #include <features.h> 10 #include <features.h>
11 #endif 11 #endif
12 #include <string.h> 12 #include <string.h>
13 13
14 #include "net/quic/core/quic_flags.h" 14 #include "net/quic/platform/api/quic_flags.h"
15 #include "net/quic/platform/api/quic_bug_tracker.h" 15 #include "net/quic/platform/api/quic_bug_tracker.h"
16 #include "net/quic/platform/api/quic_logging.h" 16 #include "net/quic/platform/api/quic_logging.h"
17 #include "net/quic/platform/api/quic_socket_address.h" 17 #include "net/quic/platform/api/quic_socket_address.h"
18 #include "net/tools/quic/platform/impl/quic_socket_utils.h" 18 #include "net/tools/quic/platform/impl/quic_socket_utils.h"
19 #include "net/tools/quic/quic_dispatcher.h" 19 #include "net/tools/quic/quic_dispatcher.h"
20 #include "net/tools/quic/quic_process_packet_interface.h" 20 #include "net/tools/quic/quic_process_packet_interface.h"
21 21
22 #ifndef SO_RXQ_OVFL 22 #ifndef SO_RXQ_OVFL
23 #define SO_RXQ_OVFL 40 23 #define SO_RXQ_OVFL 40
24 #endif 24 #endif
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 QuicSocketAddress server_address(server_ip, port); 184 QuicSocketAddress server_address(server_ip, port);
185 processor->ProcessPacket(server_address, client_address, packet); 185 processor->ProcessPacket(server_address, client_address, packet);
186 186
187 // The socket read was successful, so return true even if packet dispatch 187 // The socket read was successful, so return true even if packet dispatch
188 // failed. 188 // failed.
189 return true; 189 return true;
190 } 190 }
191 191
192 192
193 } // namespace net 193 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/quic/quic_dispatcher_test.cc ('k') | net/tools/quic/quic_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698