#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "autil.h" #include "util.h" #include "net.h" #include "char.h" #include "char_base.h" #include "mclient.h" #include "log.h" #include "handletime.h" #include "chatmagic.h" #ifdef _GSERVER_RUNTIME //传送GSERVER执行多少时间给MSERVER void gserver_runtime() { int checksum=0; char buffer[1024]; time_t starttime1; if(mfd == -1) return; if( gserver_runtime_starttime0_flag ){ gserver_runtime_starttime0_flag = FALSE; gserver_runtime_starttime0 = time(NULL); } print("\nChange->传送时间给mserver\n"); strcpy(buffer, ""); strcpy(PersonalKey, MSPERSIONALKEY); starttime1 = time(NULL); checksum += util_mkint(-1,buffer, (int)difftime(starttime1,gserver_runtime_starttime0));//传送的单位为秒 util_mkint(-1,buffer, checksum); util_SendMesg(mfd, MPROTO_RECALL_GSERVER_RUNTIME, buffer); } #endif