diff --git a/outside/src/auth.rs b/outside/src/auth.rs index 0693411..d22e80f 100644 --- a/outside/src/auth.rs +++ b/outside/src/auth.rs @@ -65,7 +65,7 @@ pub async fn send_badge(channel: Receiver<'static,CriticalSectionRawMutex,u64,1> let mut socket = TcpSocket::new(stack, &mut rx_buffer, &mut tx_buffer); socket.set_timeout(Some(Duration::from_secs(10))); info!("attempting conn to inside"); - if let Err(e) = socket.connect(IpEndpoint::new(Ipv4Address::new(169, 254, 1, 1).into_address(), 1234)).await { + if let Err(e) = socket.connect(IpEndpoint::new(Ipv4Address::new(192, 168, 0, 10).into_address(), 1234)).await { warn!("connect error: {:?}", e); continue; }