Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upPanic on socket connect on MacOS Mojave #9
Comments
kevincox
added
bug
os:macos
labels
Jan 3, 2019
This comment has been minimized.
This comment has been minimized.
|
To be honest don't have any clue what the problem is here. It guess we would have to find out how to do this broadcast on macos. |
This comment has been minimized.
This comment has been minimized.
n8henrie
commented
Jan 3, 2019
•
|
Just some notes while I look into it (mostly for my reference, you likely know all this). I have a Python app that makes a similar UPnP broadcast. It binds
Could it be because EDIT: Listening on http://192.168.0.65:4950/
UdpSocket { addr: V6([::]:45885), fd: 9 }
UdpSocket { addr: V6([::ffff:192.168.0.65]:45885), fd: 9 }Note the IPv4 address at the last line. |
n8henrie commentedJan 2, 2019
•
edited
MacOS 10.14.2
rustc 1.31.1 (b6c32da9b 2018-12-18)
Panics at
socket.connect("239.255.255.250:1900").unwrap();insrc/dlna/discovery.rs.