Added basic client capable of connecting to the server.

This commit is contained in:
Barra Ó Catháin 2023-08-25 00:34:05 +01:00
parent 080e46fe99
commit 0104a11a7e
4 changed files with 101 additions and 4 deletions

1
.gitignore vendored
View File

@ -105,6 +105,7 @@ m4/lt~obsolete.m4
Makefile Makefile
SilverMUDServer SilverMUDServer
SilverMUDClient
config.h config.h
config.h.in config.h.in
stamp-h1 stamp-h1

View File

@ -1,8 +1,12 @@
bin_PROGRAMS = SilverMUDServer bin_PROGRAMS = SilverMUDServer SilverMUDClient
dist_doc_DATA = README.org dist_doc_DATA = README.org
SilverMUDServer_CFLAGS = -I/usr/include/guile/3.0 -I/usr -lguile-3.0 -lgc -lpthread -ldl -lgnutls SilverMUDServer_CFLAGS = -I/usr/include/guile/3.0 -I/usr -lguile-3.0 -lgc -lpthread -ldl -lgnutls -g
SilverMUDClient_CFLAGS = -I/usr/include/guile/3.0 -I/usr -lguile-3.0 -lgc -lpthread -ldl -lgnutls -g
SilverMUDServer_SOURCES = \ SilverMUDServer_SOURCES = \
source/server/connections.c \ source/server/connections.c \
source/server/scheme-integration.c \ source/server/scheme-integration.c \
source/server/main.c source/server/main.c
SilverMUDClient_SOURCES = \
source/client/main.c

93
source/client/main.c Normal file
View File

@ -0,0 +1,93 @@
// =========================================
// | SilverMUD Client - main.c |
// | Copyright (C) 2023, Barra Ó Catháin |
// | See end of file for copyright notice. |
// =========================================
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <pthread.h>
#include <ncurses.h>
#include <stdbool.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <gnutls/gnutls.h>
int main (int argc, char ** argv)
{
// Print a welcome message:
printf("SilverMUD Client - Starting Now.\n"
"================================\n");
// Create a socket for communicating with the server:
int serverSocket = socket(AF_INET, SOCK_STREAM, 0);
if (serverSocket == -1)
{
printf("Socket creation failed. Aborting.\n");
exit(EXIT_FAILURE);
}
// Set up the server address structure to point to the server:
struct sockaddr_in serverAddress;
serverAddress.sin_family = AF_INET;
serverAddress.sin_addr.s_addr = inet_addr("127.0.0.1");
serverAddress.sin_port = htons(5000);
// Connect to the server:
if (connect(serverSocket, (struct sockaddr *)&serverAddress, sizeof(struct sockaddr_in)) != 0)
{
printf("Failed to connect to the server. Aborting.\n");
exit(EXIT_FAILURE);
}
// Set up a GnuTLS session and handshake with the server:
gnutls_session_t tlsSession = NULL;
if (gnutls_init(&tlsSession, GNUTLS_CLIENT) < 0)
{
exit(EXIT_FAILURE);
}
gnutls_anon_client_credentials_t clientKey = NULL;
gnutls_anon_allocate_client_credentials(&clientKey);
gnutls_credentials_set(tlsSession, GNUTLS_CRD_ANON, &clientKey);
gnutls_transport_set_int(tlsSession, serverSocket);
gnutls_priority_set_direct(tlsSession, "PERFORMANCE:+ANON-ECDH:+ANON-DH", NULL);
gnutls_handshake_set_timeout(tlsSession, GNUTLS_DEFAULT_HANDSHAKE_TIMEOUT);
int returnValue = -1;
do
{
returnValue = gnutls_handshake(tlsSession);
}
while (returnValue < 0 && gnutls_error_is_fatal(returnValue) == 0);
char buffer[2048];
while (true)
{
fgets(buffer, 2048, stdin);
gnutls_record_send(tlsSession, &buffer, 2048);
}
// Return a successful status code to the operating system:
return 0;
}
// ============================================
// | End of main.c, copyright notice follows. |
// ============================================
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

View File

@ -162,7 +162,6 @@ int main (int argc, char ** argv)
// Print a message: // Print a message:
printf("New connection established! %d clients, session ID %d.\n", clientConnections.clientCount, tlsSession); printf("New connection established! %d clients, session ID %d.\n", clientConnections.clientCount, tlsSession);
} }
else else
{ {
@ -183,7 +182,7 @@ int main (int argc, char ** argv)
} }
else if (returnValue == 2048) else if (returnValue == 2048)
{ {
printf("%s\n", buffer); printf("%s", buffer);
fflush(stdout); fflush(stdout);
} }
} }