Created
August 10, 2024 04:42
-
-
Save sullemanhossam/1f3a581f06f0a114154964e16becc947 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package cronJob | |
import ( | |
"fmt" | |
"log" | |
"network-chesswork/mac" | |
"time" | |
) | |
func FindConnectedMacAddresses(iface string) error { | |
if iface == "" { | |
iface = "en0" | |
log.Printf("No INTERFACE provided, using default: %s", iface) | |
} | |
timeout := 10 * time.Second | |
timer := time.NewTimer(timeout) | |
defer timer.Stop() | |
done := make(chan error, 1) | |
go func() { | |
if err := mac.Sniff(iface); err != nil { | |
done <- fmt.Errorf("error sniffing MAC addresses: %w", err) | |
} else { | |
done <- nil | |
} | |
}() | |
select { | |
case err := <-done: | |
// Sniff function completed within the timeout | |
return err | |
case <-timer.C: | |
// Timeout occurred | |
return fmt.Errorf("operation timed out") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment