keepsimple1 / mdns-sd

Rust library for mDNS based Service Discovery
Apache License 2.0
88 stars 38 forks source link

try to fix integration_success test #223

Closed keepsimple1 closed 1 month ago

keepsimple1 commented 1 month ago

This is for debugging / fixing issue #222 . The test failed due to the following two IPv6 addresses failed to bind in the test but still succeeded in service_daemon itself.

bind 2a02:2f08:441b:e100:7015:73e6:324a:f9d3: The requested address is not valid in its context. (os error 10049), skipped.
bind 2a02:2f08:441b:e100:9988:67c9:9723:c99a: The requested address is not valid in its context. (os error 10049), skipped.

These two addresses are global unique address (routable) and based on what I've read, they don't need to specify scope id. Trying out this patch.