blob: 211bf7d59ecf9f4203fb3ae96339aa8b680db926 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package server
// #include <sys/un.h>
import "C"
func GetMaxSockPathLen() int {
var t C.struct_sockaddr_un
return len(t.sun_path)
}