2017-04-03 16:04:57 +00:00
|
|
|
#ifndef _LIB_HEADER_H_
|
|
|
|
#define _LIB_HEADER_H_
|
|
|
|
|
|
|
|
|
|
|
|
/* global */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* sys */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* socket */
|
|
|
|
#include <unistd.h> // close
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netdb.h> // getaddrinfo, getnameinfo
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
/* vars */
|
2017-04-08 16:37:14 +00:00
|
|
|
#define SRV_HOST "127.0.0.1"
|
|
|
|
#define SRV_PORT 0x504c
|
2017-04-03 16:04:57 +00:00
|
|
|
|
|
|
|
#define MAX_BUF_LEN 512
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|