diff --git a/src/chat/main/server.c b/src/chat/main/server.c
index 943810c..08a6cdc 100644
--- a/src/chat/main/server.c
+++ b/src/chat/main/server.c
@@ -26,6 +26,7 @@ along with this program. If not, see .
#include
#include
+#include
#include
#include
@@ -36,6 +37,7 @@ int main(void)
{
why2_check_version(); //CHECK FOR UPDATES
why2_chat_init_server_config(); //CREATE server.toml CONFIGURATION
+ why2_chat_init_keys(); //CREATE ECC KEY
int listen_socket = socket(AF_INET, SOCK_STREAM, 0); //CREATE SERVER SOCKET
pthread_t thread;