xbot/ping_thread.cpp

18 lines
411 B
C++
Raw Normal View History

2023-11-25 09:22:55 -08:00
#include "ping_thread.hpp"
#include "irc_parse_thread.hpp"
#include "write_irc.hpp"
2023-11-25 20:09:20 -08:00
auto ping_thread(Connection * connection) -> void
2023-11-25 09:22:55 -08:00
{
2023-11-25 20:09:20 -08:00
connection->add_listener<IrcMsgEvent>([connection](IrcMsgEvent& event)
2023-11-25 09:22:55 -08:00
{
2023-11-25 20:09:20 -08:00
auto& irc = event.irc;
2023-11-26 15:08:55 -08:00
if (IrcCommand::PING == event.command)
2023-11-25 09:22:55 -08:00
{
2023-11-26 15:32:52 -08:00
send_pong(*connection, irc.args[0]);
2023-11-25 20:09:20 -08:00
event.handled_ = true;
2023-11-25 09:22:55 -08:00
}
2023-11-25 20:09:20 -08:00
});
2023-11-25 09:22:55 -08:00
}