Closed kgraefe closed 1 year ago
CI fails on building a dependency with error: internal compiler error
:-\
CI issue will be resolved with the next nightly (tomorrow?), see https://github.com/rust-lang/rust/issues/109199
I wanted to hear your opinion before putting too much effort into it. :-) will work on the details tomorrow.
Great! 💯
Should I expect another PR with the broadcast implementation?
The implementation is complete. It's actually just socket.set_broadcast(true)?
for both connect()
and listen()
. I included it in this PR so you can see how passing the parameters works.
I think I addressed all your comments.
I also wrapped the configuration properties in an Option
so that we can distinguish the default case from explicitly setting it to false
. It doesn't make too much sense for that particular property as the default of bool
is false
and that's also the default for the sockets broadcast capability. But I think we should establish that as a pattern for all configuration properties.
sorry, forgot about Option
Relates to #54