start_mycelium_no_tun missing in mobile #11
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Location:
mobile/src/lib.rsProblem: mycelmob calls
mobile::start_mycelium_no_tun(peers, secret_key, enable_dns)but mobile crate only hasstart_mycelium. The function does not exist.Impact: macOS/iOS no-tun mode (where DNS runs in main app) fails to compile or fails at runtime.
Fix: Add
start_mycelium_no_tunto mobile that creates Config withno_tun: true,tun_fd: None, and runs the same command loop asstart_mycelium.