blob: bb52670471c51694413366428d9ebc338b69d551 [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
5#ifndef PLATFORM_API_SOCKET_HANDLE_H_
6#define PLATFORM_API_SOCKET_HANDLE_H_
7
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
18#endif // PLATFORM_API_SOCKET_HANDLE_H_