2023-11-25 09:22:55 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "thread.hpp"
|
|
|
|
#include "connection.hpp"
|
|
|
|
#include "irc_parse_thread.hpp"
|
|
|
|
#include "write_irc.hpp"
|
|
|
|
|
2023-11-25 20:09:20 -08:00
|
|
|
#include <eventpp/eventdispatcher.h>
|
2023-11-25 09:22:55 -08:00
|
|
|
|
2023-11-25 20:09:20 -08:00
|
|
|
#include <string>
|
2023-11-25 09:22:55 -08:00
|
|
|
|
2023-11-25 20:09:20 -08:00
|
|
|
auto registration_thread(
|
2023-11-26 15:40:40 -08:00
|
|
|
Connection& connection,
|
2023-11-25 20:09:20 -08:00
|
|
|
std::string password,
|
|
|
|
std::string username,
|
|
|
|
std::string realname,
|
|
|
|
std::string nickname
|
2023-11-26 15:40:40 -08:00
|
|
|
) -> void;
|