aboutsummaryrefslogtreecommitdiff
path: root/platform/impl/socket_handle_posix.h
blob: 59ff670d913875506b6e8568864265cdde051870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file

#ifndef PLATFORM_IMPL_SOCKET_HANDLE_POSIX_H_
#define PLATFORM_IMPL_SOCKET_HANDLE_POSIX_H_

#include "platform/impl/socket_handle.h"

namespace openscreen {
namespace platform {

struct SocketHandle {
  explicit SocketHandle(int descriptor);
  int fd;
};

}  // namespace platform
}  // namespace openscreen

#endif  // PLATFORM_IMPL_SOCKET_HANDLE_POSIX_H_