mirror of
https://github.com/thearcanum/WIFSS
synced 2025-06-23 04:00:14 +02:00
30 lines
500 B
C
Executable File
30 lines
500 B
C
Executable File
#ifndef __WIFFS__
|
|
#define __WIFFS__
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <unistd.h>
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
#include <inttypes.h>
|
|
#include <dirent.h>
|
|
#include <sys/stat.h>
|
|
#include <ctype.h>
|
|
#include <pthread.h>
|
|
#include <signal.h>
|
|
#include <netdb.h>
|
|
#include <arpa/inet.h>
|
|
#include <netinet/in.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
#define BUFFER 1024
|
|
#define COMMANDBUFFER 2048
|
|
|
|
|
|
#endif
|