⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loginserver.cpp

📁 国内著名网络游戏dragon的服务端完整源码 内附完整数据库结构
💻 CPP
字号:
// LogInServer.cpp : Defines the entry point for the application.
//

#include "stdafx.h"
#include "Main.h"
#include "Debug.h"
#include <MmSystem.h>



/////////////////////////////////////////////////////////////////////////////////////////////////////


void SendPbs( char *temp )
{
	t_packet p;
	int len;
	

	if( temp == NULL )return;
	if( *temp == 0 ) return;

	len = strlen( temp );

	p.h.header.type = CMD_LOGIN_BBS;
		strcpy( p.u.login_bbs.bbs, temp );
	p.h.header.size = sizeof( t_login_bbs ) - MAX_PATH + len;

	for(  int i = 0 ; i < LOGIN_MAX_CONNECTIONS ; i ++)
	{
		if( connections[i].server_check )
		{
			QueuePacket( connections, i, &p, 1 );
		}
	}
}


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -