1
0
mirror of https://github.com/golang/go synced 2024-10-05 18:31:28 -06:00
go/src/pkg/net/sockoptip_netbsd.go

16 lines
368 B
Go
Raw Normal View History

// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build netbsd
package net
func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
panic("unimplemented")
}
func setIPv4MulticastLoopback(fd *netFD, v bool) error {
panic("unimplemented")
}