mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
8 lines
162 B
Go
8 lines
162 B
Go
package libcore
|
|
|
|
import "github.com/sagernet/libping"
|
|
|
|
func IcmpPing(address string, timeout int32) (int32, error) {
|
|
return libping.IcmpPing(address, timeout)
|
|
}
|