源战役
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

34 行
1.0 KiB

  1. %% auther: huangyongxing@yeah.net
  2. %% date: 2016.11.09
  3. {
  4. application,
  5. main,
  6. [
  7. {description, "game server"},
  8. {vsn, "1.0"},
  9. {modules, [main]},
  10. {registered, []},
  11. {applications, [kernel, stdlib, sasl, inets, crypto, asn1, public_key, ssl]},
  12. {mod, {main, []}},
  13. {start_phases, []},
  14. {env, [
  15. {tcp_acceptor_num, 10}
  16. ,{tcp_options, [
  17. binary
  18. ,{packet, 0}
  19. ,{active, false}
  20. ,{keepalive, true}
  21. ,{reuseaddr, true}
  22. ,{nodelay, false}
  23. ,{delay_send, true}
  24. ,{exit_on_close, false}
  25. ,{high_watermark, 65536}
  26. ,{send_timeout, 15000}
  27. ,{send_timeout_close, true}
  28. ]
  29. }
  30. ,{certify, {1672502400, "5b682df2885c381e8cb434040cc3bdb1"}}
  31. ]
  32. }
  33. ]
  34. }.