aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/net
AgeCommit message (Collapse)Author
2024-07-21net: update to latest net packagedeadprogram
Signed-off-by: deadprogram <[email protected]>
2024-03-09net: update to net package with Buffers implementationdeadprogram
Signed-off-by: deadprogram <[email protected]>
2024-02-28net: update to latest maindeadprogram
Signed-off-by: deadprogram <[email protected]>
2023-12-19net: update to latest main branch with accept fixdeadprogram
Signed-off-by: deadprogram <[email protected]>
2023-12-09net: update to latest main branch with TCPListenerdeadprogram
Signed-off-by: deadprogram <[email protected]>
2023-12-09modules: update net submodule to latest commit with http Client Transport ↵deadprogram
interface Signed-off-by: deadprogram <[email protected]>
2023-12-06modules: switch to main branch of net submoduledeadprogram
Signed-off-by: deadprogram <[email protected]>
2023-12-06modules: add tinygo net package as submoduledeadprogram
Signed-off-by: deadprogram <[email protected]>
2023-12-06src/net: remove existing files to replace with submoduledeadprogram
Signed-off-by: deadprogram <[email protected]>
2023-03-10Added missing TCPAddr and UDPAddr implementations to the net packageJustin A. Wilson
2022-12-19build: drop deprecated build tagsYurii Soldak
2022-10-18net: implement PipeHrishi Hiraskar
2022-08-06net: sync net.go with Go 1.18 stdlibRoman Volosatovs
Signed-off-by: Roman Volosatovs <[email protected]>
2022-08-04all: format code according to Go 1.19 rulesAyke van Laethem
Go 1.19 started reformatting code in a way that makes it more obvious how it will be rendered on pkg.go.dev. It gets it almost right, but not entirely. Therefore, I had to modify some of the comments so that they are formatted correctly.
2022-06-19all: run gofmt on all source codeAyke van Laethem
Some source code wasn't part of `FMT_PATHS` so wasn't checked for correct formatting. This change includes all this source code and excludes cgo/testdata because it contains files that can't be parsed.
2021-12-09Test net.Buffers{}Federico G. Schwindt
2021-12-09Add net.BuffersFederico G. Schwindt
Should fix https://github.com/mailru/easyjson/issues/335, for the most part.
2021-12-08net/interface: use internal implementation for itoa.Uitoadeadprogram
Signed-off-by: deadprogram <[email protected]>
2021-12-08net: add bare Interface implementationsoypat
2021-11-16net/ip, syscall/errno: Reduce code duplication by switching to internal/itoa.Dan Kegel
internal/itoa wasn't around back in go 1.12 days when tinygo's syscall/errno.go was written. It was only added as of go 1.17 ( https://github.com/golang/go/commit/061a6903a232cb868780b ) so we have to have an internal copy for now. The internal copy should be deleted when tinygo drops support for go 1.16. FWIW, the new version seems nicer. It uses no allocations when converting 0, and although the optimizer might make this moot, uses a multiplication x 10 instead of a mod operation.
2021-07-02move xtoi2 to parse.gosoypat
2021-07-02add MAC address implementation to netPatricio Whittingslow
2021-06-21net: os: add more stubs for 1.15Federico G. Schwindt
Fix importing net/http.
2021-06-10Add more net compatibilityFederico G. Schwindt
Required for net/http.
2021-05-20Add support for net.IPFederico G. Schwindt