Closed surfrock66 closed 2 years ago
So I don't know rust, but if I open up main.js and change line 181 from this:
let socket_addr = (Ipv6Addr::from(0), ws_port);
to this:
let socket_addr = (Ipv4Addr::from(0), ws_port);
It works on ipv4. It seems the better solution is to check if ipv6 is working, THEN fall back to ipv4 on failure so that socket_addr gets populated first by v6 then v4, but I'm not familiar enough with rust to do that properly. For now, my local branch is working.
@surfrock66 did you have a change to see if #33 has solved your problem?
I hadn't seen that, I'll try it out when I get a chance today and report back, thanks!
As far as I can tell it's good to go, thanks!
I had mumble-web-proxy working, but for another service I had to disable ipv6. Now when I run mumble-web-proxy, I get the following output:
Error: Io(Os { code: 97, kind: Other, message: "Address family not supported by protocol" })
I recompiled just in case this was something impacted at build time, and it didn't change anything.