mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-19 20:14:04 +00:00
upgrade net (#5490)
* upgrade net * add some missing crypto and os API (#5488) * add missing crypto API * gofmt crypto/tls/common.go * pull new net with unixsock formatted * update net to latest main
This commit is contained in:
@@ -138,6 +138,22 @@ func Symlink(oldname, newname string) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func Chmod(name string, mode FileMode) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func Chown(name string, uid, gid int) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func Link(oldname, newname string) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func (f *File) Chown(uid, gid int) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func Readlink(name string) (string, error) {
|
||||
return "", ErrNotImplemented
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user