mirror of
https://github.com/blacktop/ipsw.git
synced 2026-06-07 12:27:36 +00:00
12 lines
139 B
Go
12 lines
139 B
Go
//go:build !windows
|
|
|
|
package usb
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func usbmuxdDial() (net.Conn, error) {
|
|
return net.Dial("unix", "/var/run/usbmuxd")
|
|
}
|