Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-07-21 | net: update to latest net package | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2024-03-09 | net: update to net package with Buffers implementation | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2024-02-28 | net: update to latest main | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2023-12-19 | net: update to latest main branch with accept fix | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2023-12-09 | net: update to latest main branch with TCPListener | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2023-12-09 | modules: update net submodule to latest commit with http Client Transport ↵ | deadprogram | |
interface Signed-off-by: deadprogram <[email protected]> | |||
2023-12-06 | modules: switch to main branch of net submodule | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2023-12-06 | modules: add tinygo net package as submodule | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2023-12-06 | src/net: remove existing files to replace with submodule | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2023-03-10 | Added missing TCPAddr and UDPAddr implementations to the net package | Justin A. Wilson | |
2022-12-19 | build: drop deprecated build tags | Yurii Soldak | |
2022-10-18 | net: implement Pipe | Hrishi Hiraskar | |
2022-08-06 | net: sync net.go with Go 1.18 stdlib | Roman Volosatovs | |
Signed-off-by: Roman Volosatovs <[email protected]> | |||
2022-08-04 | all: format code according to Go 1.19 rules | Ayke 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-19 | all: run gofmt on all source code | Ayke 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-09 | Test net.Buffers{} | Federico G. Schwindt | |
2021-12-09 | Add net.Buffers | Federico G. Schwindt | |
Should fix https://github.com/mailru/easyjson/issues/335, for the most part. | |||
2021-12-08 | net/interface: use internal implementation for itoa.Uitoa | deadprogram | |
Signed-off-by: deadprogram <[email protected]> | |||
2021-12-08 | net: add bare Interface implementation | soypat | |
2021-11-16 | net/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-02 | move xtoi2 to parse.go | soypat | |
2021-07-02 | add MAC address implementation to net | Patricio Whittingslow | |
2021-06-21 | net: os: add more stubs for 1.15 | Federico G. Schwindt | |
Fix importing net/http. | |||
2021-06-10 | Add more net compatibility | Federico G. Schwindt | |
Required for net/http. | |||
2021-05-20 | Add support for net.IP | Federico G. Schwindt | |