module Connection
Definitions
def auth(*arguments)
Authenticate to the server.
Implementation
def auth(*arguments)
call("AUTH", *arguments)
end
def echo(message)
Echo the given string.
Implementation
def echo(message)
call("ECHO", message)
end
def ping(message)
Ping the server.
Implementation
def ping(message)
call("PING", message)
end
def quit
Close the connection.
Implementation
def quit
call("QUIT")
end