Skip to content

Commit

Permalink
Let unix_socket example compile but not run on Windows (#849)
Browse files Browse the repository at this point in the history
* Let `unix_socket` example compile but not run on Windows
  • Loading branch information
Aankhen committed May 12, 2021
1 parent ef288ff commit 6711e65
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions examples/unix_socket.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#![deny(warnings)]

use tokio::net::UnixListener;
use tokio_stream::wrappers::UnixListenerStream;

#[cfg(unix)]
#[tokio::main]
async fn main() {
use tokio::net::UnixListener;
use tokio_stream::wrappers::UnixListenerStream;

pretty_env_logger::init();

let listener = UnixListener::bind("/tmp/warp.sock").unwrap();
Expand All @@ -13,3 +14,9 @@ async fn main() {
.run_incoming(incoming)
.await;
}

#[cfg(not(unix))]
#[tokio::main]
async fn main() {
panic!("Must run under Unix-like platform!");
}

0 comments on commit 6711e65

Please sign in to comment.