blob: f723fa36aff112200061023d427c9e955a01664d [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// Copyright 2017 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
5// +build freebsd netbsd openbsd
6
7package socket
8
9import "unsafe"
10
11func probeProtocolStack() int {
12 var p uintptr
13 return int(unsafe.Sizeof(p))
14}