| 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_CURVECP_CURVECP_SERVER_SOCKET_H_ | 5 #ifndef NET_CURVECP_CURVECP_SERVER_SOCKET_H_ |
| 6 #define NET_CURVECP_CURVECP_SERVER_SOCKET_H_ | 6 #define NET_CURVECP_CURVECP_SERVER_SOCKET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "net/base/completion_callback.h" | 9 #include "net/base/completion_callback.h" |
| 10 #include "net/curvecp/connection_key.h" | 10 #include "net/curvecp/connection_key.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 Acceptor* acceptor_; | 54 Acceptor* acceptor_; |
| 55 bool is_child_socket_; // Was this socket accepted from another. | 55 bool is_child_socket_; // Was this socket accepted from another. |
| 56 ConnectionKey key_; | 56 ConnectionKey key_; |
| 57 | 57 |
| 58 DISALLOW_COPY_AND_ASSIGN(CurveCPServerSocket); | 58 DISALLOW_COPY_AND_ASSIGN(CurveCPServerSocket); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace net | 61 } // namespace net |
| 62 | 62 |
| 63 #endif // NET_CURVECP_CURVECP_SERVER_SOCKET_H_ | 63 #endif // NET_CURVECP_CURVECP_SERVER_SOCKET_H_ |
| OLD | NEW |