Quellcode durchsuchen

Merge pull request #817 from parallelsystems/raw-socket-nonblock

Change `phy::RawSocket` to open the underlying socket with `O_NONBLOCK`
Dario Nieuwenhuis vor 1 Jahr
Ursprung
Commit
fa7fd3c321
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen
  1. 4 1
      src/phy/sys/bpf.rs

+ 4 - 1
src/phy/sys/bpf.rs

@@ -57,7 +57,10 @@ fn open_device() -> io::Result<libc::c_int> {
     unsafe {
         for i in 0..256 {
             let dev = format!("/dev/bpf{}\0", i);
-            match libc::open(dev.as_ptr() as *const libc::c_char, libc::O_RDWR) {
+            match libc::open(
+                dev.as_ptr() as *const libc::c_char,
+                libc::O_RDWR | libc::O_NONBLOCK,
+            ) {
                 -1 => continue,
                 fd => return Ok(fd),
             };