config.hpp 372 B

123456789101112131415
  1. #ifndef CONFIG_HPP
  2. #define CONFIG_HPP
  3. #include <cstddef>
  4. using namespace std;
  5. //#define DATA_DIR string("/home/fromentin/data/") //string("/workdir/lmpa/jfromentin/")
  6. #define SERVER_IP "127.0.0.1" //"10.1.0.104" //"192.168.1.3" //Orval 04
  7. #define SERVER_PORT 55556
  8. #define MAX_MSG_SIZE 1024
  9. #define MAX_CLIENTS 2048
  10. #define MAX_WORKERS 2048
  11. #define MAX_GENUS 60
  12. #endif