From e99a03a838ddcf9eecadc10a7f71837afac3b99c Mon Sep 17 00:00:00 2001 From: Joursoir Date: Sun, 6 Dec 2020 19:47:25 +0000 Subject: some changes in reg/auth; client: remove name in arguments --- src/client/client.cpp | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 src/client/client.cpp (limited to 'src/client/client.cpp') diff --git a/src/client/client.cpp b/src/client/client.cpp deleted file mode 100644 index 8143b9e..0000000 --- a/src/client/client.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include -#include - -#include "user.hpp" - -#define SERVER_IP "127.0.0.1" -static int port = 3030; - -int main(int argc, char *argv[]) -{ - if(argc < 2) { - printf("Usage: client *name*\n"); - return 1; - } - - initscr(); - //raw(); - noecho(); - - int rows, columns; - getmaxyx(stdscr, rows, columns); - if(rows != 24 || columns != 80) { - endwin(); - printf("Please use terminal with size 24x80\n"); - return 1; - } - - Client *user = Client::Start(SERVER_IP, port, argv[1]); - if(!user) { - endwin(); - perror("server"); - return 1; - } - - ChatRoom *room = new ChatRoom(); - user->Run(room); - delete room; - - endwin(); - return 0; -} \ No newline at end of file -- cgit v1.2.3-18-g5258