chuyiwen_gmsv/mclient.c

46 lines
1.1 KiB
C
Raw Permalink Normal View History

2016-12-24 08:45:52 +08:00
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <netdb.h>
#include <errno.h>
#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"
2017-01-13 23:37:03 +08:00
#ifdef _GSERVER_RUNTIME //传送GSERVER执行多少时间给MSERVER
2016-12-24 08:45:52 +08:00
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);
}
2017-01-13 23:37:03 +08:00
print("\nChange->传送时间给mserver\n");
2016-12-24 08:45:52 +08:00
strcpy(buffer, "");
strcpy(PersonalKey, MSPERSIONALKEY);
starttime1 = time(NULL);
2017-01-13 23:37:03 +08:00
checksum += util_mkint(-1,buffer, (int)difftime(starttime1,gserver_runtime_starttime0));//传送的单位为秒
2016-12-24 08:45:52 +08:00
util_mkint(-1,buffer, checksum);
util_SendMesg(mfd, MPROTO_RECALL_GSERVER_RUNTIME, buffer);
}
#endif