Add client (working with given server)

Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2021-11-05 18:26:05 -03:00
commit a1250cb334
10 changed files with 104 additions and 0 deletions

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"files.associations": {
"error.h": "c",
"client.h": "c",
"errors.h": "c"
}
}

24
Makefile Normal file
View File

@ -0,0 +1,24 @@
CC = gcc
CCFLAGS = -Wall -std=c99 -pedantic -g
OBJECTS = server.o errors.o client.o
all: $(OBJECTS)
server.o: server.c include/errors.h
$(CC) $(CCFLAGS) -c server.c
errors.o: errors.c include/errors.h
$(CC) $(CCFLAGS) -c errors.c
client.o: client.c errors.o
$(CC) $(CCFLAGS) client.c -o client.o errors.o
clean:
rm -rf $(OBJECTS)
test:
pvs-studio-analyzer trace -- make
pvs-studio-analyzer analyze
plog-converter -a '64:1,2,3;GA:1,2,3;OP:1,2,3' -t tasklist -o report.tasks PVS-Studio.log
cppcheck --quiet --enable=all --force --inconclusive .
.PHONY: all clean test

34
client.c Normal file
View File

@ -0,0 +1,34 @@
#include "include/client.h"
int main(int argc, char *argv[]) {
int fd = 0;
struct sockaddr_in serv_addr;
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
printSystemError("User: socket()");
}
serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(PORT);
serv_addr.sin_addr.s_addr = inet_addr(ADDRESS);
if (connect(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) {
printSystemError("User: connect()");
}
char input[MAX_LEN] = {0};
int readChars;
while ((readChars = read(STDIN_FILENO, input, MAX_LEN - 1)) != 0) {
if (readChars < 0)
printSystemError("User: read()");
input[readChars] = '\0';
if (write(fd, input, readChars) < 0) {
printSystemError("User: write()");
}
}
close(fd);
return EXIT_SUCCESS;
}

BIN
client.o Executable file

Binary file not shown.

12
errors.c Normal file
View File

@ -0,0 +1,12 @@
#include "include/errors.h"
void printError(char * string) {
fprintf(stderr, "%s", string);
fprintf(stderr, "\n");
exit(EXIT_FAILURE);
}
void printSystemError(char * string) {
perror(string);
exit(EXIT_FAILURE);
}

BIN
errors.o Normal file

Binary file not shown.

17
include/client.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef CLIENT_H
#define CLIENT_H
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include "errors.h"
#define MAX_ARGS 3
#define MAX_LEN 100
#define PORT 8080
#define ADDRESS "127.0.0.1"
#endif

10
include/errors.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef ERRORS_H
#define ERRORS_H
#include <stdio.h>
#include <stdlib.h>
void printError(char * string);
void printSystemError(char * string);
#endif

0
server.c Normal file
View File

BIN
server.o Normal file

Binary file not shown.