Ryan Keane | 6e54252 | 2019-09-10 16:05:44 -0700 | [diff] [blame^] | 1 | // Copyright 2019 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 | #ifndef PLATFORM_API_SOCKET_HANDLE_H_ |
| 6 | #define PLATFORM_API_SOCKET_HANDLE_H_ |
| 7 | |
| 8 | namespace openscreen { |
| 9 | namespace platform { |
| 10 | |
| 11 | // A SocketHandle is the handle used to access a Socket by the underlying |
| 12 | // platform. |
| 13 | struct SocketHandle; |
| 14 | |
| 15 | } // namespace platform |
| 16 | } // namespace openscreen |
| 17 | |
| 18 | #endif // PLATFORM_API_SOCKET_HANDLE_H_ |