| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef _LOG_MYLOG_H_
- #define _LOG_MYLOG_H_
- #include<stdio.h>
- #include<string.h>
- #include<sys/socket.h>
- #include<arpa/inet.h>
- #include<stdlib.h>
- #include<getopt.h>
- #include <unistd.h>
- #include<errno.h>
- #include <fcntl.h>
- //#include"aes.h"
- #include <sys/epoll.h>
- #include <sys/wait.h>
- #include<map>
- #include<string>
- #include<vector>
- #include <sys/socket.h> //for socket ofcourse
- #include <sys/types.h>
- #include <stdlib.h> //for exit(0);
- #include <errno.h> //For errno - the error number
- #include <netinet/tcp.h> //Provides declarations for tcp header
- #include <netinet/udp.h>
- #include <netinet/ip.h> //Provides declarations for ip header
- #include <netinet/if_ether.h>
- #include <arpa/inet.h>
- #include <fcntl.h>
- #include <byteswap.h>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <arpa/inet.h>
- #include <linux/if_ether.h>
- #include <linux/filter.h>
- #include <sys/time.h>
- #include <time.h>
- #include <sys/timerfd.h>
- #include <set>
- #include <encrypt.h>
- #include <inttypes.h>
- #include <sys/ioctl.h>
- #include <netinet/in.h>
- #include <net/if.h>
- #include <arpa/inet.h>
- #include <stdarg.h>
- using namespace std;
- #define RED "\x1B[31m"
- #define GRN "\x1B[32m"
- #define YEL "\x1B[33m"
- #define BLU "\x1B[34m"
- #define MAG "\x1B[35m"
- #define CYN "\x1B[36m"
- #define WHT "\x1B[37m"
- #define RESET "\x1B[0m"
- const int log_impossible=0;
- const int log_fatal=1;
- const int log_error=2;
- const int log_warn=3;
- const int log_info=4;
- const int log_debug=5;
- const int log_trace=6;
- extern int log_level;
- #define log(...) log0(__FILE__,__FUNCTION__,__LINE__,__VA_ARGS__)
- void log0(const char * file,const char * function,int line,int level,const char* str, ...);
- #endif
|