-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2021 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. | ||
|
||
//go:build tamago | ||
|
||
package unix | ||
|
||
import ( | ||
"syscall" | ||
_ "unsafe" | ||
) | ||
|
||
func RecvfromInet4(fd int, p []byte, flags int, from *syscall.SockaddrInet4) (int, error) { | ||
return 0, syscall.ENOSYS | ||
} | ||
|
||
func RecvfromInet6(fd int, p []byte, flags int, from *syscall.SockaddrInet6) (n int, err error) { | ||
return 0, syscall.ENOSYS | ||
} | ||
|
||
func SendtoInet4(fd int, p []byte, flags int, to *syscall.SockaddrInet4) (err error) { | ||
return syscall.ENOSYS | ||
} | ||
|
||
func SendtoInet6(fd int, p []byte, flags int, to *syscall.SockaddrInet6) (err error) { | ||
return syscall.ENOSYS | ||
} | ||
|
||
func SendmsgNInet4(fd int, p, oob []byte, to *syscall.SockaddrInet4, flags int) (n int, err error) { | ||
return 0, syscall.ENOSYS | ||
} | ||
|
||
func SendmsgNInet6(fd int, p, oob []byte, to *syscall.SockaddrInet6, flags int) (n int, err error) { | ||
return 0, syscall.ENOSYS | ||
} | ||
|
||
func RecvmsgInet4(fd int, p, oob []byte, flags int, from *syscall.SockaddrInet4) (n, oobn int, recvflags int, err error) { | ||
return 0, 0, 0, syscall.ENOSYS | ||
} | ||
|
||
func RecvmsgInet6(fd int, p, oob []byte, flags int, from *syscall.SockaddrInet6) (n, oobn int, recvflags int, err error) { | ||
return 0, 0, 0, syscall.ENOSYS | ||
} |