|
|
- %% auther: huangyongxing@yeah.net
- %% date: 2016.11.09
- {
- application,
- main,
- [
- {description, "game server"},
- {vsn, "1.0"},
- {modules, [center]},
- {registered, []},
- {applications, [kernel, stdlib, sasl, inets, crypto, asn1, public_key, ssl]},
- {mod, {center, []}},
- {start_phases, []},
- {env, [
- {tcp_acceptor_num, 10}
- ,{tcp_options, [
- binary
- ,{packet, 0}
- ,{active, false}
- ,{keepalive, true}
- ,{reuseaddr, true}
- ,{nodelay, false}
- ,{delay_send, true}
- ,{exit_on_close, false}
- ,{high_watermark, 65536}
- ,{send_timeout, 15000}
- ,{send_timeout_close, true}
- ]
- }
- ,{certify, {1672502400, "5b682df2885c381e8cb434040cc3bdb1"}}
- ]
- }
- ]
- }.
|