Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #ifndef HEADERS_H
  2. #define HEADERS_H
  3.  
  4. /* General part */
  5. #include <errno.h>
  6. #include <iostream>
  7. #include <string>
  8. #include <algorithm>
  9.  
  10. /* Server part */
  11. #include <ev++.h>
  12. #include <fcntl.h>
  13. #include <netinet/in.h>
  14. #include <sys/types.h>
  15. #include <sys/socket.h>
  16. #include <unistd.h>
  17.  
  18. /* Log part */
  19. #define HAVE_STRUCT_TIMESPEC
  20. #include <pthread.h>
  21. #include <queue>
  22. #include <memory>
  23. #include <fstream>
  24. #include <ctime>
  25. #include <iomanip>
  26.  
  27. typedef int type_socket;
  28.  
  29. #endif // HEADERS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement