mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8e435b8279
Signed-off-by: Wataru Ishida <ishida.wataru@lab.ntt.co.jp> Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
47 lines
1 KiB
Go
47 lines
1 KiB
Go
// +build !linux linux,386
|
|
|
|
package sctp
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"runtime"
|
|
)
|
|
|
|
var ErrUnsupported = errors.New("SCTP is unsupported on " + runtime.GOOS + "/" + runtime.GOARCH)
|
|
|
|
func setsockopt(fd int, optname, optval, optlen uintptr) (uintptr, uintptr, error) {
|
|
return 0, 0, ErrUnsupported
|
|
}
|
|
|
|
func getsockopt(fd int, optname, optval, optlen uintptr) (uintptr, uintptr, error) {
|
|
return 0, 0, ErrUnsupported
|
|
}
|
|
|
|
func (c *SCTPConn) SCTPWrite(b []byte, info *SndRcvInfo) (int, error) {
|
|
return 0, ErrUnsupported
|
|
}
|
|
|
|
func (c *SCTPConn) SCTPRead(b []byte) (int, *SndRcvInfo, error) {
|
|
return 0, nil, ErrUnsupported
|
|
}
|
|
|
|
func (c *SCTPConn) Close() error {
|
|
return ErrUnsupported
|
|
}
|
|
|
|
func ListenSCTP(net string, laddr *SCTPAddr) (*SCTPListener, error) {
|
|
return nil, ErrUnsupported
|
|
}
|
|
|
|
func (ln *SCTPListener) Accept() (net.Conn, error) {
|
|
return nil, ErrUnsupported
|
|
}
|
|
|
|
func (ln *SCTPListener) Close() error {
|
|
return ErrUnsupported
|
|
}
|
|
|
|
func DialSCTP(net string, laddr, raddr *SCTPAddr) (*SCTPConn, error) {
|
|
return nil, ErrUnsupported
|
|
}
|