21 lines
370 B
C
21 lines
370 B
C
#ifndef __SEND_PROG_H__
|
|
#define __SEND_PROG_H__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <getopt.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <pthread.h>
|
|
#include <arpa/inet.h>
|
|
|
|
#include "input.h"
|
|
#include "output.h"
|
|
#include "Com_SendToBack.h"
|
|
|
|
#define SENDPROG_VERSION "0.1"
|
|
#define META_FLAG_DUMP 0x02
|
|
|
|
#endif /* __SEND_PROG_H__ */
|