mirror of
https://github.com/Eising/kipketer.git
synced 2024-05-11 05:55:17 +00:00
11 lines
271 B
Ruby
11 lines
271 B
Ruby
class Hastighedstest < Sinatra::Base
|
|
# Pings a remote host with one packet
|
|
#
|
|
# @param remote [String] The host to ping
|
|
# @return true or false
|
|
def ping(remote)
|
|
result = system("ping -c 1 -W 1 #{remote} > /dev/null")
|
|
result
|
|
end
|
|
end
|