Skip to content

Instantly share code, notes, and snippets.

@sullemanhossam
Created August 10, 2024 04:42
Show Gist options
  • Save sullemanhossam/1f3a581f06f0a114154964e16becc947 to your computer and use it in GitHub Desktop.
Save sullemanhossam/1f3a581f06f0a114154964e16becc947 to your computer and use it in GitHub Desktop.
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