Closed ortex closed 1 year ago
There are actually two problems with multicast:
First is regression in roc-toolkit (https://github.com/roc-streaming/roc-toolkit/issues/532) - fixed and pushed to master.
Second is run-time problem on macOS android emulator that can be fixed using this:
adb shell "ip a" | grep 'state UP' | cut -d':' -f2 | awk '{print $1}' | cut -d'@' -f1 |
while read iface
do
if ! adb shell ip route show table all | \
grep -qF "224.0.0.0/4 dev ${iface} table local"
then
adb shell "su 0 ip route add 224.0.0.0/4 dev ${iface} table local"
fi
done
There are actually two problems with multicast:
First is regression in roc-toolkit (roc-streaming/roc-toolkit#532) - fixed and pushed to master.
Second is run-time problem on macOS android emulator that can be fixed using this:
adb shell "ip a" | grep 'state UP' | cut -d':' -f2 | awk '{print $1}' | cut -d'@' -f1 | while read iface do if ! adb shell ip route show table all | \ grep -qF "224.0.0.0/4 dev ${iface} table local" then adb shell "su 0 ip route add 224.0.0.0/4 dev ${iface} table local" fi done
As I see we don't need the second part. CI Is green on main
Codecov Report
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.