Another round of login server cleaning

* fixed passwordencrypt on SQL not behaving correctly (since r10753)
 * corrected some column lengths in the login db (username, password,...)
 * fixed some places which used wfifo without first reallocating it
 * removed interserver packet 0x7532 (Request to end connection), as there was no code that actually sent this packet
 * moved RFIFOSKIP actions to execute as soon as possible

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12043 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage
2008-01-10 15:35:23 +00:00
parent 614c28dbf9
commit fafb4b8476
11 changed files with 416 additions and 453 deletions

View File

@@ -3229,11 +3229,6 @@ int parse_char(int fd)
RFIFOSKIP(fd,2);
break;
// disconnect request from login server
case 0x7532:
set_eof(fd);
return 0;
// unknown packet received
default:
ShowError("parse_char: Received unknown packet "CL_WHITE"0x%x"CL_RESET" from ip '"CL_WHITE"%s"CL_RESET"'! Disconnecting!\n", RFIFOW(fd,0), ip2str(ipl, NULL));