blob: 9aea5f1eaeff997aadbc9ad315984956f8bff5d9 [file] [log] [blame]
Ryan Keane6e542522019-09-10 16:05:44 -07001// 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
Ryan Keane3b88a252019-09-17 09:55:33 -07005#ifndef PLATFORM_IMPL_SOCKET_HANDLE_H_
6#define PLATFORM_IMPL_SOCKET_HANDLE_H_
Ryan Keane6e542522019-09-10 16:05:44 -07007
8namespace openscreen {
9namespace platform {
10
11// A SocketHandle is the handle used to access a Socket by the underlying
12// platform.
13struct SocketHandle;
14
15} // namespace platform
16} // namespace openscreen
17
Ryan Keane3b88a252019-09-17 09:55:33 -070018#endif // PLATFORM_IMPL_SOCKET_HANDLE_H_