You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create the listener that we'll pass into the devserver, but save its IP here so
86
94
// we can display it to the user in the tui
95
+
let devserver_bind_address = SocketAddr::new(devserver_bind_ip, devserver_port);
87
96
let listener = std::net::TcpListener::bind(devserver_bind_address).with_context(|| {
88
97
anyhow::anyhow!(
89
98
"Failed to bind server to: {devserver_bind_address}, is there another devserver running?\nTo run multiple devservers, use the --port flag to specify a different port"
@@ -92,7 +101,7 @@ impl WebServer {
92
101
93
102
// If the IP is 0.0.0.0, we need to get the actual IP of the machine
94
103
// This will let ios/android/network clients connect to the devserver
95
-
let devserver_exposed_ip = if devserver_bind_ip == IpAddr::V4(Ipv4Addr::new(0,0,0,0)){
104
+
let devserver_exposed_ip = if devserver_bind_ip == SELF_IP{
0 commit comments