Implement Keep Alive messages.

master
Philippe Pittoli 2024-02-20 17:14:37 +01:00
parent 66ebcb662d
commit 4c07699082
2 changed files with 18 additions and 0 deletions

11
src/requests/keepalive.cr Normal file
View File

@ -0,0 +1,11 @@
class AuthD::Request
IPC::JSON.message KeepAlive, 250 do
def initialize()
end
def handle(authd : AuthD::Service, fd : Int32)
Response::KeepAlive.new
end
end
AuthD.requests << KeepAlive
end

View File

@ -0,0 +1,7 @@
class AuthD::Response
IPC::JSON.message KeepAlive, 250 do
def initialize()
end
end
AuthD.responses << KeepAlive
end