Refactor code

This commit is contained in:
Santiago Lo Coco 2021-11-06 01:06:11 -03:00
parent f227b7ee38
commit 26b5fafa01
3 changed files with 3 additions and 39 deletions

View File

@ -1,8 +1,6 @@
CC = gcc
CCFLAGS = -Wall -std=c99 -pedantic -g
# OBJECTS = errors.o server.o client.o
CLIENT=client.o
SERVER=server.o
ERROR=errors.o

View File

@ -1,45 +1,13 @@
#include "include/challenges.h"
// char introChallenge(int fd, char * output, char * message, char * question, char * flag) {
// printf("%s\n", message);
// int readChars;
// while ((readChars = read(fd, output, MAX_LEN - 1)) != 0) {
// if (readChars < 0)
// printSystemError("Challenges: read()");
// output[readChars] = '\0';
// }
// printf("%s\n", question);
// return strcmp(output, flag) == 0;
// }
// char genChallenge(int fd, char * output, char * message, char * question, char * flag) {
// printf("%s\n", message);
// int readChars;
// while ((readChars = read(fd, output, MAX_LEN - 1)) != 0) {
// if (readChars < 0)
// printSystemError("Challenges: read()");
// output[readChars] = '\0';
// }
// printf("%s\n", question);
// return !strcmp(output, flag);
// }
char genChallenge(int fd, char * output, challenge_t challenge) {
printf("%s\n", challenge.message);
int readChars;
// while ((readChars = read(fd, output, MAX_LEN - 1)) != 0) {
readChars = read(fd, output, MAX_LEN - 1);
if (readChars < 0)
printSystemError("Challenges: read()");
output[readChars] = '\0';
// }
if (readChars < 0)
printSystemError("Challenges: read()");
output[readChars] = '\0';
printf("%s\n", challenge.question);

View File

@ -10,13 +10,11 @@
#define MAX_LEN 100
typedef struct challenge_t {
// char (* challenge) (int fd, char * output, char * message, char * question, char * flag);
char * message;
char * question;
char * flag;
} challenge_t;
// char genChallenge(int fd, char * output, char * message, char * question, char * flag);
char genChallenge(int fd, char * output, challenge_t challenge);
#endif