Results 108 comments of Odd Stråbø

https://docs.python.org/3/library/ipaddress.html https://pypi.org/project/ipaddress/ ```py3 >>> ipaddress.ip_address("10.0.0.1").is_global False >>> ipaddress.ip_address("192.168.10.101").is_global False >>> ipaddress.ip_address("172.17.0.1").is_global False >>> ipaddress.ip_address("14.103.3.221").is_global True ``` It might not be desirable to filter them out however, as some of the...

I suspect the cyw43 WiFi driver or firmware is discarding multicast MAC addresses. Looks like lwip is supposed to hook into the network interface to configure the filters, but that...

I can confirm that calling `cyw43_write_iovar_u32(self, "allmulti", true, WWD_STA_INTERFACE)` enables multicast to work and thus ping and http over IPv6. I don't know how best to integrate that particular change...

@sstaub This is work on the underlying layers that the mentioned function utilizes, so that the standard Arduino methods can work properly. Multicast is currently not possible without the mentioned...

@earlephilhower We *could* potentially access the low level driver functions, but I think that'd be a bit messy. Cleaner to apply a patch in my opinion. I've cone ahead and...

Well, that is a little problematic. The `make-libpico.sh` script isn't getting called by CI, neither during tests nor release.

Unable to reproduce on the Pico. Once I found the SPI pins, your getting started snippet is working just fine. Enable debugging on port `Serial`, and set debug level to...

I had ended up with multiple session cookies, with different path on them (7 in total, for different pages within the app). Deleting all of them and logging back in...

While the stack trace doesn't seem exact, it looks like this is at least related to, if not duplicate of #748

While there's no section in my config specifically for the .map files, they are served via the default `location /` block. Looks like Firefox didn't use the maps for whatever...