diff options
author | Scott Feldman <[email protected]> | 2023-03-27 14:15:21 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-12-06 13:11:44 +0100 |
commit | 4229e670ce40eea0775c89b5ca07ba7e53f1e643 (patch) | |
tree | a53d596795363f74e697a25393594684bca013f6 /loader | |
parent | 76a7ad2a3ea27ad1571b445d753d7d7515d327b8 (diff) | |
download | tinygo-4229e670ce40eea0775c89b5ca07ba7e53f1e643.tar.gz tinygo-4229e670ce40eea0775c89b5ca07ba7e53f1e643.zip |
Add network device driver model, netdev
This PR adds a network device driver model called netdev. There will be a companion PR for TinyGo drivers to update the netdev drivers and network examples. This PR covers the core "net" package.
An RFC for the work is here: #tinygo-org/drivers#487. Some things have changed from the RFC, but nothing major.
The "net" package is a partial port of Go's "net" package, version 1.19.3. The src/net/README file has details on what is modified from Go's "net" package.
Most "net" features are working as they would in normal Go. TCP/UDP/TLS protocol support is there. As well as HTTP client and server support. Standard Go network packages such as golang.org/x/net/websockets and Paho MQTT client work as-is. Other packages are likely to work as-is.
Testing results are here (https://docs.google.com/spreadsheets/d/e/2PACX-1vT0cCjBvwXf9HJf6aJV2Sw198F2ief02gmbMV0sQocKT4y4RpfKv3dh6Jyew8lQW64FouZ8GwA2yjxI/pubhtml?gid=1013173032&single=true).
Diffstat (limited to 'loader')
-rw-r--r-- | loader/goroot.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/loader/goroot.go b/loader/goroot.go index 0da8afa0c..33e24aaa7 100644 --- a/loader/goroot.go +++ b/loader/goroot.go @@ -232,6 +232,7 @@ func pathsToOverride(goMinor int, needsSyscallPackage bool) map[string]bool { "": true, "crypto/": true, "crypto/rand/": false, + "crypto/tls/": false, "device/": false, "examples/": false, "internal/": true, @@ -241,6 +242,7 @@ func pathsToOverride(goMinor int, needsSyscallPackage bool) map[string]bool { "internal/task/": false, "machine/": false, "net/": true, + "net/http/": false, "os/": true, "reflect/": false, "runtime/": false, |