tunnel.h 229 B

123456789101112131415
  1. #ifndef TUNNEL_H
  2. #define TUNNEL_H
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <stdint.h>
  7. #define MAX_CONNECTION 64
  8. #define TOTAL_CONNECTION 128
  9. #define MAX_CLIENT_BUFFER 65536
  10. char *get_time();
  11. #endif