Jeff Epler
|
ca9523b814
|
Pico w: socket: Correctly return negative error code from recv_into
|
2022-10-12 11:38:29 -05:00 |
Jeff Epler
|
62cbd3bcd8
|
Pico w: socket: correctly track sockets generated by accept()
|
2022-10-12 11:38:26 -05:00 |
Jeff Epler
|
afc1c0e3bb
|
Fix unused variable diagnostics, make it a fatal error
|
2022-09-30 11:19:22 -05:00 |
Jeff Epler
|
37620d4eb0
|
Fix several classes of compiler diagnostic & make fatal
* -Wno-nested-externs
* -Wno-strict-prototypes
* -Wno-double-promotion
* -Wno-sign-compare
|
2022-09-30 11:19:22 -05:00 |
Jeff Epler
|
74cdf42ece
|
pico w: implement bind, listen, accept
this works with some simple tcp & udp echo service code
|
2022-09-29 10:02:20 -05:00 |
Jeff Epler
|
09d4fbc557
|
Remove FIXME
this was verbatim-copied from micropython
|
2022-09-28 14:38:13 -05:00 |
Jeff Epler
|
ff7731491e
|
Implement enough of socketpool to do ntp and non-https requests
|
2022-09-28 10:06:34 -05:00 |
Jeff Epler
|
a7a1bd7880
|
Implement DNS resolution
```
>>> s = socketpool.SocketPool(wifi.radio)
>>> s.getaddrinfo("google.com", 80)
[(0, 0, 0, '', ('142.250.81.206', 80))]
```
|
2022-09-28 10:06:33 -05:00 |