Skip to content

Instantly share code, notes, and snippets.

@drunderscore
Created February 10, 2022 18:32
Show Gist options
  • Save drunderscore/03071533d34cb307e71dba15bf2808a9 to your computer and use it in GitHub Desktop.
Save drunderscore/03071533d34cb307e71dba15bf2808a9 to your computer and use it in GitHub Desktop.
wym you're not a socket???
#include <LibCore/EventLoop.h>
#include <LibCore/Stream.h>
#include <LibCore/TCPServer.h>
#include <LibMain/Main.h>
class Client
{
public:
explicit Client(NonnullOwnPtr<Core::Stream::TCPSocket> socket) : m_socket(move(socket))
{
m_socket->on_ready_to_read = [this] {
outln("ready to read!");
auto buffer = MUST(ByteBuffer::create_uninitialized(2 * KiB));
outln("constructed buffer");
auto bytes_read_or_error = m_socket->read(buffer.bytes());
if (bytes_read_or_error.is_error())
{
outln("fuck: {}", bytes_read_or_error.error());
VERIFY_NOT_REACHED();
}
// buffer.resize(bytes_read);
outln("read {} bytes", buffer.size());
};
}
private:
NonnullOwnPtr<Core::Stream::TCPSocket> m_socket;
};
ErrorOr<int> serenity_main(Main::Arguments)
{
Core::EventLoop event_loop;
auto socket = TRY(Core::TCPServer::try_create());
Vector<Client> clients;
socket->on_ready_to_accept = [&] {
outln("Accepting client!");
auto socket_or_error = socket->accept();
if (socket_or_error.is_error())
{
warnln("\u001b[35mFailed to accept client: {}\u001b[0m", socket_or_error.error());
return;
}
clients.append(Client(socket_or_error.release_value()));
};
TRY(socket->listen({}, 25565));
return event_loop.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment