From 6c30e71ed08cdb838b77b3fe52dea30774574230 Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Sun, 22 Mar 2026 18:16:52 +0000 Subject: Add the extension packets Introduce the subprotocol ("Einsof"), its prototype serialization and parsing functions, and its first set of messages. These messages are carriers of public-key authentication mechanism which involves client request, server challenge, and client response. An "ident" message is used to tell a compatible server that you support a particular version of the subprotocol. Note: the functions that handle encoding are very specialized. They're not representative of how the wire format should be generally handled, and were written this way because the first set of messages is tiny and simple enough. --- src/aoapplication.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/aoapplication.h') diff --git a/src/aoapplication.h b/src/aoapplication.h index 3773f16..6fc41d9 100644 --- a/src/aoapplication.h +++ b/src/aoapplication.h @@ -4,6 +4,7 @@ #include "datatypes.h" #include "demoserver.h" #include "discord_rich_presence.h" +#include "ext_packet.h" #include "serverdata.h" #include "widgets/aooptionsdialog.h" -- cgit