blob: 7e154c2df2df6cc56597e45cceec0d84ac975980 [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package windows
6
7type WSAData struct {
8 Version uint16
9 HighVersion uint16
10 MaxSockets uint16
11 MaxUdpDg uint16
12 VendorInfo *byte
13 Description [WSADESCRIPTION_LEN + 1]byte
14 SystemStatus [WSASYS_STATUS_LEN + 1]byte
15}
16
17type Servent struct {
18 Name *byte
19 Aliases **byte
20 Proto *byte
21 Port uint16
22}