| OLD | NEW |
| 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 NET_TOOLS_FLIP_SERVER_SM_CONNECTION_H_ | 5 #ifndef NET_TOOLS_FLIP_SERVER_SM_CONNECTION_H_ |
| 6 #define NET_TOOLS_FLIP_SERVER_SM_CONNECTION_H_ | 6 #define NET_TOOLS_FLIP_SERVER_SM_CONNECTION_H_ |
| 7 | 7 |
| 8 #include <arpa/inet.h> // in_addr_t | 8 #include <arpa/inet.h> // in_addr_t |
| 9 #include <stddef.h> |
| 9 #include <time.h> | 10 #include <time.h> |
| 10 | 11 |
| 11 #include <list> | 12 #include <list> |
| 12 #include <string> | 13 #include <string> |
| 13 | 14 |
| 14 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 15 #include "net/spdy/spdy_protocol.h" | 16 #include "net/spdy/spdy_protocol.h" |
| 16 #include "net/tools/epoll_server/epoll_server.h" | 17 #include "net/tools/epoll_server/epoll_server.h" |
| 17 #include "net/tools/flip_server/mem_cache.h" | 18 #include "net/tools/flip_server/mem_cache.h" |
| 18 #include "net/tools/flip_server/ring_buffer.h" | 19 #include "net/tools/flip_server/ring_buffer.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 size_t max_bytes_sent_per_dowrite_; | 154 size_t max_bytes_sent_per_dowrite_; |
| 154 | 155 |
| 155 SSL* ssl_; | 156 SSL* ssl_; |
| 156 | 157 |
| 157 static bool force_spdy_; | 158 static bool force_spdy_; |
| 158 }; | 159 }; |
| 159 | 160 |
| 160 } // namespace net | 161 } // namespace net |
| 161 | 162 |
| 162 #endif // NET_TOOLS_FLIP_SERVER_SM_CONNECTION_H_ | 163 #endif // NET_TOOLS_FLIP_SERVER_SM_CONNECTION_H_ |
| OLD | NEW |