26 lines
700 B
JavaScript
26 lines
700 B
JavaScript
///////////////////////////////////////////////////
|
|
////////////////////系统服务app////////////////////
|
|
///////////////////////////////////////////////////
|
|
var app_server = app_server || cls_app.new("server", packet_face);
|
|
|
|
//加载或更新js文件
|
|
min_loadJsFile("server/loadjs/mod.js", function (){
|
|
//服务器心跳包
|
|
min_loadJsFile("server/heartbeat/mod.js", function (){
|
|
//通道管理
|
|
min_loadJsFile("server/channel/mod.js", function (){
|
|
|
|
});
|
|
});
|
|
});
|
|
|
|
//TCP客户端连上
|
|
app_server.OnTcpConnected = function(_str_tcpid) {
|
|
for (var i = 0; i < app_server.modlist.length; i++) {
|
|
if (app_server.modlist[i].OnTcpConnected) {
|
|
app_server.modlist[i].OnTcpConnected(_str_tcpid);
|
|
}
|
|
}
|
|
}
|
|
|