Refactor code (and delete easter eggs)
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar> Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
parent
7fc6221c5f
commit
77f3ccf2eb
|
@ -1,14 +0,0 @@
|
||||||
.bash_history
|
|
||||||
.bashrc
|
|
||||||
.config/
|
|
||||||
.gdb_history
|
|
||||||
.gdbinit
|
|
||||||
.idea/
|
|
||||||
.inputrc
|
|
||||||
.viminfo
|
|
||||||
.vscode/
|
|
||||||
server
|
|
||||||
client
|
|
||||||
*.o
|
|
||||||
quine
|
|
||||||
a.out
|
|
11
Makefile
11
Makefile
|
@ -12,20 +12,20 @@ TMP := $(shell mktemp)
|
||||||
|
|
||||||
all: $(ERROR) $(CHALLENGE) $(RANDOM) $(SOCKETS) $(CLIENT) $(SERVER)
|
all: $(ERROR) $(CHALLENGE) $(RANDOM) $(SOCKETS) $(CLIENT) $(SERVER)
|
||||||
|
|
||||||
$(SERVER): server.c challenges.c errors.c include/errors.h include/challenges.h include/server.h include/challengesLib.h
|
$(SERVER): server.c challenges.c errors.c sockets.c include/errors.h include/challenges.h include/server.h include/challengesLib.h include/sockets.h
|
||||||
$(CC) $(CCFLAGS) server.c -o server challenges.o errors.o random.o sockets.o -lm
|
$(CC) $(CCFLAGS) server.c -o server challenges.o errors.o random.o sockets.o -lm
|
||||||
objcopy --add-section .RUN_ME="$(TMP)" --set-section-flags .mydata=noload,readonly server
|
objcopy --add-section .RUN_ME="$(TMP)" --set-section-flags .mydata=noload,readonly server
|
||||||
strip --strip-debug server
|
strip --strip-debug server
|
||||||
rm "$(TMP)"
|
rm "$(TMP)"
|
||||||
|
|
||||||
$(CLIENT): client.c errors.c include/errors.h include/client.h
|
$(CLIENT): client.c errors.c sockets.c include/errors.h include/client.h include/sockets.h
|
||||||
$(CC) $(CCFLAGS) client.c -o client errors.o sockets.o
|
$(CC) $(CCFLAGS) client.c -o client errors.o sockets.o
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
$(CC) $(CCFLAGS) -I./include -c $<
|
$(CC) $(CCFLAGS) -I./include -c $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(ERROR) $(CHALLENGE) $(CLIENT) $(SERVER) $(RANDOM) $(SOCKETS) PVS-Studio.log report.tasks strace_out
|
rm -rf $(ERROR) $(CHALLENGE) $(CLIENT) $(SERVER) $(RANDOM) $(SOCKETS)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
pvs-studio-analyzer trace -- make
|
pvs-studio-analyzer trace -- make
|
||||||
|
@ -33,4 +33,7 @@ test:
|
||||||
plog-converter -a '64:1,2,3;GA:1,2,3;OP:1,2,3' -t tasklist -o report.tasks PVS-Studio.log
|
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 .
|
cppcheck --quiet --enable=all --force --inconclusive .
|
||||||
|
|
||||||
.PHONY: all clean test
|
cleanTest:
|
||||||
|
rm -rf PVS-Studio.log report.tasks strace_out
|
||||||
|
|
||||||
|
.PHONY: all clean test cleanTest
|
||||||
|
|
34
README.md
34
README.md
|
@ -1,12 +1,13 @@
|
||||||
# BSSolver
|
# BCSSolver
|
||||||
|
|
||||||
BCSSocket (Bottler Client-Server Socket) es un sistema que...
|
BCSSocket (Bottler Client-Server Socket)
|
||||||
|
|
||||||
## Table de contenidos
|
## Tabla de contenidos
|
||||||
* [Requisitos](#requisitos)
|
- [Requisitos <a name="requisitos"></a>](#requisitos-)
|
||||||
* [Compilación](#compilación)
|
- [Compilación <a name="compilación"></a>](#compilación-)
|
||||||
* [Ejecución](#ejecución)
|
- [Ejecución <a name="ejecución"></a>](#ejecución-)
|
||||||
* [Testeos](#tests)
|
- [Testeos <a name="tests"></a>](#testeos-)
|
||||||
|
- [Limpieza <a name="limpieza"></a>](#limpieza-)
|
||||||
|
|
||||||
## Requisitos <a name="requisitos"></a>
|
## Requisitos <a name="requisitos"></a>
|
||||||
|
|
||||||
|
@ -39,7 +40,11 @@ y en otra terminal
|
||||||
./client
|
./client
|
||||||
```
|
```
|
||||||
|
|
||||||
Debe notar que el `server` usará el puerto 8080 de localhost por lo que si tiene algún otro servidor en ese puerto debe cerrarlo antes de correrlo.
|
Debe notar que el `server` usará el puerto 8080 de localhost (por default) por lo que si tiene algún otro servidor en ese puerto debe cerrarlo antes de correrlo. Asimismo, si usted quiere modificar este puerto y/o la dirección del servidor lo puede hacer mediante:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./server -a ${address} -p ${port}
|
||||||
|
```
|
||||||
|
|
||||||
## Testeos <a name="tests"></a>
|
## Testeos <a name="tests"></a>
|
||||||
|
|
||||||
|
@ -61,6 +66,19 @@ y en otra terminal
|
||||||
valgrind ./client
|
valgrind ./client
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Limpieza <a name="limpieza"></a>
|
||||||
|
Si desea borrar los archivos creados luego de la compilación debe correr:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make clean
|
||||||
|
```
|
||||||
|
|
||||||
|
Note que si, además, quiere borrar el output de los tests (de PVS-Studio específicamente), lo puede hacer con:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make cleanTest
|
||||||
|
```
|
||||||
|
|
||||||
# Autores
|
# Autores
|
||||||
- Barmasch, Juan Martín (61033)
|
- Barmasch, Juan Martín (61033)
|
||||||
- Bellver, Ezequiel (61268)
|
- Bellver, Ezequiel (61268)
|
||||||
|
|
21
challenges.c
21
challenges.c
|
@ -16,8 +16,7 @@ char genChallenge(FILE * stream, char ** output, challenge_t challenge) {
|
||||||
if (getline(output, &linecap, stream) < 0)
|
if (getline(output, &linecap, stream) < 0)
|
||||||
printSystemError("Challenges: getline()");
|
printSystemError("Challenges: getline()");
|
||||||
|
|
||||||
int ans = strcmp(*output, challenge.flag);
|
return !strcmp(*output, challenge.flag);
|
||||||
return !ans;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void writeChallenge() {
|
void writeChallenge() {
|
||||||
|
@ -77,23 +76,17 @@ void quineChallenge() {
|
||||||
printf("\nENTER para reintentar.\n");
|
printf("\nENTER para reintentar.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void gdbme(char * output) {
|
void gdbme() {
|
||||||
if (getpid() == 0x12345678) {
|
if (getpid() == MAGIC_VAL)
|
||||||
*output = 1;
|
|
||||||
}
|
|
||||||
else *output = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void gdbChallenge() {
|
|
||||||
char gdbOutput;
|
|
||||||
gdbme(&gdbOutput);
|
|
||||||
|
|
||||||
if (gdbOutput)
|
|
||||||
printf("La respuesta es gdb_rules\n");
|
printf("La respuesta es gdb_rules\n");
|
||||||
else
|
else
|
||||||
printf("ENTER para reintentar.\n");
|
printf("ENTER para reintentar.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gdbChallenge() {
|
||||||
|
gdbme();
|
||||||
|
}
|
||||||
|
|
||||||
void boxMuller(double * normal) {
|
void boxMuller(double * normal) {
|
||||||
double random1 = getUniform(1);
|
double random1 = getUniform(1);
|
||||||
double random2 = getUniform(1);
|
double random2 = getUniform(1);
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
# CHALLENGES:
|
||||||
|
|
||||||
|
- entendido
|
||||||
|
- itba
|
||||||
|
- M4GFKZ289aku
|
||||||
|
- fk3wfLCm3QvS
|
||||||
|
- too_easy
|
||||||
|
- .RUN_ME
|
||||||
|
- K5n2UFfpFMUN
|
||||||
|
- BUmyYq5XxXGt
|
||||||
|
- u^v
|
||||||
|
- chin_chu_lan_cha
|
||||||
|
- gdb_rules
|
||||||
|
- normal
|
||||||
|
|
||||||
|
# EASTER EGGS:
|
||||||
|
|
||||||
|
I) `strings server`
|
||||||
|
```
|
||||||
|
_______________________
|
||||||
|
< ESTO ES UN EASTER_EGG >
|
||||||
|
-----------------------
|
||||||
|
\ ^__^
|
||||||
|
\ (oo)\_______
|
||||||
|
(__)\ )\/\
|
||||||
|
||----w |
|
||||||
|
|| ||
|
||||||
|
```
|
||||||
|
|
||||||
|
II) `cat /tmp/hidden`
|
||||||
|
|
||||||
|
```
|
||||||
|
QUE CURIOSO
|
||||||
|
```
|
||||||
|
|
||||||
|
III) `objdump -x server` --> `objdump -d --section .text server`
|
||||||
|
|
||||||
|
```
|
||||||
|
__L
|
||||||
|
D_A
|
||||||
|
N_I
|
||||||
|
I_N
|
||||||
|
R_E
|
||||||
|
G_G
|
||||||
|
L__
|
||||||
|
A_S
|
||||||
|
V_E
|
||||||
|
```
|
||||||
|
Leyendo de abajo para arriba en cada columna:
|
||||||
|
|
||||||
|
```
|
||||||
|
VALGRIND ES GENIAL
|
||||||
|
```
|
||||||
|
(aunque no usamos valgrind pero: `valgrind ./server > /dev/null` también arroja el resultado)
|
||||||
|
|
||||||
|
|
19
client.c
19
client.c
|
@ -3,16 +3,21 @@
|
||||||
#include "include/client.h"
|
#include "include/client.h"
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
int fd;
|
int fd = createSocket();
|
||||||
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
|
|
||||||
printSystemError("User: socket()");
|
|
||||||
|
|
||||||
struct sockaddr_in serv_addr;
|
struct sockaddr_in serv_addr;
|
||||||
setSockAddress(argc, argv, &serv_addr);
|
setSockAddress(argc, argv, &serv_addr);
|
||||||
|
|
||||||
if (connect(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0)
|
connectToSocket(fd, &serv_addr);
|
||||||
printSystemError("User: connect()");
|
|
||||||
|
|
||||||
|
processAndSendInput(fd);
|
||||||
|
|
||||||
|
closeSocket(fd);
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
void processAndSendInput(int fd) {
|
||||||
char input[MAX_LEN] = {0};
|
char input[MAX_LEN] = {0};
|
||||||
int readChars;
|
int readChars;
|
||||||
while ((readChars = read(STDIN_FILENO, input, MAX_LEN - 1)) != 0) {
|
while ((readChars = read(STDIN_FILENO, input, MAX_LEN - 1)) != 0) {
|
||||||
|
@ -23,8 +28,4 @@ int main(int argc, char *argv[]) {
|
||||||
if (write(fd, input, readChars) < 0)
|
if (write(fd, input, readChars) < 0)
|
||||||
printSystemError("User: write()");
|
printSystemError("User: write()");
|
||||||
}
|
}
|
||||||
|
|
||||||
close(fd);
|
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
|
||||||
}
|
}
|
|
@ -16,6 +16,7 @@
|
||||||
#define UPPER 2
|
#define UPPER 2
|
||||||
#define LOWER 1
|
#define LOWER 1
|
||||||
#define M_PI 3.14159265358979323846
|
#define M_PI 3.14159265358979323846
|
||||||
|
#define MAGIC_VAL 0x12345678
|
||||||
|
|
||||||
typedef struct challenge_t {
|
typedef struct challenge_t {
|
||||||
char * message;
|
char * message;
|
||||||
|
|
|
@ -22,7 +22,7 @@ conviene usar cada uno?", "itba\n", NULL},
|
||||||
que usan para mandar las respuestas? ¿Por qué?", "M4GFKZ289aku\n", NULL},
|
que usan para mandar las respuestas? ¿Por qué?", "M4GFKZ289aku\n", NULL},
|
||||||
{"EBADF...", "¿Qué útil abstracción es utilizada para comunicarse con sockets? ¿se puede \
|
{"EBADF...", "¿Qué útil abstracción es utilizada para comunicarse con sockets? ¿se puede \
|
||||||
utilizar read(2) y write(2) para operar?", "fk3wfLCm3QvS\n", writeChallenge},
|
utilizar read(2) y write(2) para operar?", "fk3wfLCm3QvS\n", writeChallenge},
|
||||||
{"respuesta = strings:269", "¿Cómo garantiza TCP que los paquetes llegan en orden y no se \
|
{"respuesta = strings:250", "¿Cómo garantiza TCP que los paquetes llegan en orden y no se \
|
||||||
pierden?", "too_easy\n", NULL},
|
pierden?", "too_easy\n", NULL},
|
||||||
{".data .bss .comment ? .shstrtab .symtab .strtab", "Un servidor suele crear un nuevo proceso \
|
{".data .bss .comment ? .shstrtab .symtab .strtab", "Un servidor suele crear un nuevo proceso \
|
||||||
o thread para atender las conexiones entrantes. ¿Qué conviene más?", ".RUN_ME\n", NULL},
|
o thread para atender las conexiones entrantes. ¿Qué conviene más?", ".RUN_ME\n", NULL},
|
||||||
|
@ -39,13 +39,5 @@ entonces\ny = ", "sockets es un mecanismo de IPC. ¿Qué es más eficiente entre
|
||||||
};
|
};
|
||||||
|
|
||||||
char too_easy = 'a';
|
char too_easy = 'a';
|
||||||
char * easter_egg1 = " _______________________\n\
|
|
||||||
< ESTO ES UN EASTER_EGG >\n\
|
|
||||||
-----------------------\n\
|
|
||||||
\\ ^__^\n\
|
|
||||||
\\ (oo)\\_______\n\n\
|
|
||||||
(__)\\ )\\/\\\n\
|
|
||||||
||----w |\n\
|
|
||||||
|| ||\n";
|
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -4,7 +4,6 @@
|
||||||
#define _POSIX_C_SOURCE 200809L
|
#define _POSIX_C_SOURCE 200809L
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/socket.h>
|
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -14,4 +13,6 @@
|
||||||
|
|
||||||
#define MAX_LEN 100
|
#define MAX_LEN 100
|
||||||
|
|
||||||
|
void processAndSendInput(int fd);
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -4,8 +4,6 @@
|
||||||
#define _POSIX_C_SOURCE 200809L
|
#define _POSIX_C_SOURCE 200809L
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/socket.h>
|
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -17,7 +15,6 @@
|
||||||
#include "sockets.h"
|
#include "sockets.h"
|
||||||
|
|
||||||
#define MAX_LEN 100
|
#define MAX_LEN 100
|
||||||
#define MAX_PEND_REQ 3
|
|
||||||
#define TIME_SLEEP 2
|
#define TIME_SLEEP 2
|
||||||
|
|
||||||
void startChallenge();
|
void startChallenge();
|
||||||
|
|
|
@ -13,7 +13,13 @@
|
||||||
|
|
||||||
#define PORT 8080
|
#define PORT 8080
|
||||||
#define ADDRESS "127.0.0.1"
|
#define ADDRESS "127.0.0.1"
|
||||||
|
#define MAX_PEND_REQ 3
|
||||||
|
|
||||||
|
int createSocket();
|
||||||
|
void setSockOptions(int fd);
|
||||||
void setSockAddress(int argc, char *argv[], struct sockaddr_in * address);
|
void setSockAddress(int argc, char *argv[], struct sockaddr_in * address);
|
||||||
|
int bindAndGetSocket(int fd, struct sockaddr_in *address);
|
||||||
|
void connectToSocket(int fd, struct sockaddr_in *address);
|
||||||
|
void closeSocket(int fd);
|
||||||
|
|
||||||
#endif
|
#endif
|
28
server.c
28
server.c
|
@ -3,34 +3,20 @@
|
||||||
#include "include/server.h"
|
#include "include/server.h"
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
int fd;
|
int fd = createSocket();
|
||||||
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) == 0)
|
setSockOptions(fd);
|
||||||
printSystemError("Server: socket()");
|
|
||||||
|
|
||||||
int opt = 1;
|
|
||||||
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)))
|
|
||||||
printSystemError("Server: setsockopt()");
|
|
||||||
|
|
||||||
struct sockaddr_in address;
|
struct sockaddr_in address;
|
||||||
setSockAddress(argc, argv, &address);
|
setSockAddress(argc, argv, &address);
|
||||||
|
|
||||||
if (bind(fd, (struct sockaddr *) &address, sizeof(address)) < 0)
|
int fdAux = bindAndGetSocket(fd, &address);
|
||||||
printSystemError("Server: bind()");
|
|
||||||
|
|
||||||
if (listen(fd, MAX_PEND_REQ) < 0)
|
|
||||||
printSystemError("Server: listen()");
|
|
||||||
|
|
||||||
int addrlen = sizeof(address), fdAux;
|
|
||||||
if ((fdAux = accept(fd, (struct sockaddr *) &address, (socklen_t *) &addrlen)) < 0)
|
|
||||||
printSystemError("Server: accept()");
|
|
||||||
|
|
||||||
if (setvbuf(stdout, NULL, _IONBF, 0) != 0)
|
if (setvbuf(stdout, NULL, _IONBF, 0) != 0)
|
||||||
printSystemError("Server: setvbuf()");
|
printSystemError("Server: setvbuf()");
|
||||||
|
|
||||||
startChallenge(fdAux);
|
startChallenge(fdAux);
|
||||||
|
|
||||||
close(fdAux);
|
closeSocket(fd);
|
||||||
close(fd);
|
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -59,8 +45,10 @@ void startChallenge(int fd) {
|
||||||
printf("\033[1;1H\033[2J");
|
printf("\033[1;1H\033[2J");
|
||||||
printf("Felicitaciones, finalizaron el juego. Ahora deberán implementar el servidor que se comporte como el servidor provisto\n");
|
printf("Felicitaciones, finalizaron el juego. Ahora deberán implementar el servidor que se comporte como el servidor provisto\n");
|
||||||
|
|
||||||
if (stream != NULL)
|
if (stream != NULL) {
|
||||||
fclose(stream);
|
if (fclose(stream) == EOF)
|
||||||
|
printSystemError("Server: fclose()");
|
||||||
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
47
sockets.c
47
sockets.c
|
@ -2,25 +2,58 @@
|
||||||
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
||||||
#include "include/sockets.h"
|
#include "include/sockets.h"
|
||||||
|
|
||||||
|
int createSocket() {
|
||||||
|
int fd;
|
||||||
|
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
|
||||||
|
printSystemError("Sockets: socket()");
|
||||||
|
return fd;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setSockOptions(int fd) {
|
||||||
|
int opt = 1;
|
||||||
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)))
|
||||||
|
printSystemError("Sockets: setsockopt()");
|
||||||
|
}
|
||||||
|
|
||||||
|
int bindAndGetSocket(int fd, struct sockaddr_in *address) {
|
||||||
|
if (bind(fd, (struct sockaddr *) address, sizeof(*address)) < 0)
|
||||||
|
printSystemError("Sockets: bind()");
|
||||||
|
|
||||||
|
if (listen(fd, MAX_PEND_REQ) < 0)
|
||||||
|
printSystemError("Sockets: listen()");
|
||||||
|
|
||||||
|
int addrlen = sizeof(*address), fdAux;
|
||||||
|
if ((fdAux = accept(fd, (struct sockaddr *) address, (socklen_t *) &addrlen)) < 0)
|
||||||
|
printSystemError("Sockets: accept()");
|
||||||
|
|
||||||
|
return fdAux;
|
||||||
|
}
|
||||||
|
|
||||||
|
void connectToSocket(int fd, struct sockaddr_in *address) {
|
||||||
|
if (connect(fd, (struct sockaddr *) address, sizeof(*address)) < 0)
|
||||||
|
printSystemError("Sockets: connect()");
|
||||||
|
}
|
||||||
|
|
||||||
|
void closeSocket(int fd) {
|
||||||
|
if (close(fd) < 0)
|
||||||
|
printSystemError("Sockets: close()");
|
||||||
|
}
|
||||||
|
|
||||||
void setSockAddress(int argc, char *argv[], struct sockaddr_in * address) {
|
void setSockAddress(int argc, char *argv[], struct sockaddr_in * address) {
|
||||||
address->sin_family = AF_INET;
|
address->sin_family = AF_INET;
|
||||||
|
|
||||||
if (argc == 1) {
|
|
||||||
address->sin_addr.s_addr = inet_addr(ADDRESS);
|
address->sin_addr.s_addr = inet_addr(ADDRESS);
|
||||||
address->sin_port = htons(PORT);
|
address->sin_port = htons(PORT);
|
||||||
}
|
|
||||||
|
|
||||||
int opt;
|
int opt;
|
||||||
|
opterr = 0;
|
||||||
while ((opt = getopt(argc, argv, "a:p:")) != -1) {
|
while ((opt = getopt(argc, argv, "a:p:")) != -1) {
|
||||||
switch (opt) {
|
|
||||||
case 'a':
|
|
||||||
if (optarg[0] == '-')
|
if (optarg[0] == '-')
|
||||||
printError("Usage: server [-a address] [-p port]\n");
|
printError("Usage: server [-a address] [-p port]\n");
|
||||||
|
switch (opt) {
|
||||||
|
case 'a':
|
||||||
address->sin_addr.s_addr = inet_addr(optarg);
|
address->sin_addr.s_addr = inet_addr(optarg);
|
||||||
break;
|
break;
|
||||||
case 'p':
|
case 'p':
|
||||||
if (optarg[0] == '-')
|
|
||||||
printError("Usage: server [-a address] [-p port]\n");
|
|
||||||
address->sin_port = htons(atoi(optarg));
|
address->sin_port = htons(atoi(optarg));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue