18 lines
288 B
C
18 lines
288 B
C
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
#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_LEN 100
|
|
#define PORT 8080
|
|
#define ADDRESS "127.0.0.1"
|
|
|
|
#endif |