diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-11-26 03:15:54 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-26 03:15:54 +0000 |
| commit | 6aa27d1a8e348a17dfdf0d994b26c95dfe7e23c5 (patch) | |
| tree | 802bdbe7c395579481ce368874918a577434148a /examples/std/src/bin/net.rs | |
| parent | 539c007b44bb67feee6db7d021887faa14c62e8b (diff) | |
| parent | c257893da9f31337861a59e71022609e1bbaad95 (diff) | |
Merge #504
504: net: update smoltcp r=Dirbaio a=Dirbaio
What it says on the tin
Co-authored-by: Dario Nieuwenhuis <[email protected]>
Diffstat (limited to 'examples/std/src/bin/net.rs')
| -rw-r--r-- | examples/std/src/bin/net.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/std/src/bin/net.rs b/examples/std/src/bin/net.rs index 8abcc586f..be78e3a7e 100644 --- a/examples/std/src/bin/net.rs +++ b/examples/std/src/bin/net.rs | |||
| @@ -67,7 +67,7 @@ async fn main_task(spawner: Spawner) { | |||
| 67 | 67 | ||
| 68 | socket.set_timeout(Some(embassy_net::SmolDuration::from_secs(10))); | 68 | socket.set_timeout(Some(embassy_net::SmolDuration::from_secs(10))); |
| 69 | 69 | ||
| 70 | let remote_endpoint = (Ipv4Address::new(192, 168, 69, 74), 8000); | 70 | let remote_endpoint = (Ipv4Address::new(192, 168, 69, 100), 8000); |
| 71 | info!("connecting to {:?}...", remote_endpoint); | 71 | info!("connecting to {:?}...", remote_endpoint); |
| 72 | let r = socket.connect(remote_endpoint).await; | 72 | let r = socket.connect(remote_endpoint).await; |
| 73 | if let Err(e) = r { | 73 | if let Err(e) = r { |
