Initial MSVC 2008 projects workspace
This commit is contained in:
19
out/dist_l2c/README_login.txt
Normal file
19
out/dist_l2c/README_login.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Lineage II Login server, compatible with L2J Java server
|
||||
|
||||
"Compatible" means:
|
||||
- supports L2J game servers
|
||||
- uses the same login server config files as L2J login server
|
||||
- uses the same mysql database as L2J login server
|
||||
|
||||
Problems and incompatibilities:
|
||||
- negative game server hexids not supported (remove "-" sign in front of server hexid in DB and in hexid.txt)
|
||||
(Don't know Java's BigInteger type negative number bit format or too lazy to work on it)
|
||||
- login telnet is not supported (and telnet config is ignored)
|
||||
- mmo.properties config is ignored
|
||||
- some config values in loginserver.properties about FloodProtector are ignored, and FloodProtector is not done
|
||||
- ShowLicense config option is ignored as it is violating Lineage client <=> Login server protocol.
|
||||
So, ShowLicense is always true.
|
||||
|
||||
Platform: Win32 >= Win2000, possibly WinXP (other untested :) )
|
||||
May require installation of Microsoft Visual C++ 2008 redistributable package
|
||||
see google: http://www.google.com/search?q=Microsoft+Visual+C%2B%2B+2008+redistributable+package
|
4
out/dist_l2c/config_game/developer.conf
Normal file
4
out/dist_l2c/config_game/developer.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
EverybodyHasAdminRights = true
|
||||
|
||||
assert = true
|
||||
debug = true
|
4
out/dist_l2c/config_game/hexid.txt
Normal file
4
out/dist_l2c/config_game/hexid.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
#the hexID to auth into login
|
||||
#Sat Sep 12 19:36:00 YEKST 2009
|
||||
HexID=204b45936c923316c6a5a8837267278f
|
||||
ServerID=1
|
6
out/dist_l2c/config_game/mysql.conf
Normal file
6
out/dist_l2c/config_game/mysql.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
# MySQL settings
|
||||
mysql_host = localhost
|
||||
mysql_user = root
|
||||
mysql_pass = w00t
|
||||
mysql_db = l2jdb
|
||||
mysql_max_connections = 50
|
19
out/dist_l2c/config_game/network.conf
Normal file
19
out/dist_l2c/config_game/network.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
login_server_address = 127.0.0.1
|
||||
login_server_auth_port = 9014
|
||||
login_protocol_version = 258
|
||||
|
||||
game_server_bind_address = 0.0.0.0
|
||||
game_server_bind_port = 7777
|
||||
|
||||
report_internal_hostname = 127.0.0.1
|
||||
report_external_hostname = 127.0.0.1
|
||||
|
||||
min_game_protocol_version = 83
|
||||
max_game_protocol_version = 87
|
||||
|
||||
max_players = 10
|
||||
|
||||
accept_alternate_server_id = false
|
||||
list_as_test_server = false
|
||||
server_list_clock = false
|
||||
server_list_brackets = false
|
7
out/dist_l2c/config_login/banned_ip.cfg
Normal file
7
out/dist_l2c/config_login/banned_ip.cfg
Normal file
@@ -0,0 +1,7 @@
|
||||
# Subnets can be defined like 123.45.0.0
|
||||
# Comments after # are ignored
|
||||
# Expiration timestamp can be added after IP for when to disable the ban
|
||||
# Example:
|
||||
# 192.168.0.0 1237618800000 # Bans all address starting with 192.168 and will expire on 21 Mar 2009 07:00:00 GMT
|
||||
10.255.255.255
|
||||
10.254.254.254
|
136
out/dist_l2c/config_login/loginserver.properties
Normal file
136
out/dist_l2c/config_login/loginserver.properties
Normal file
@@ -0,0 +1,136 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Login Server Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# This is the server configuration file. Here you can set up the connection information for your server.
|
||||
# This was written with the assumption that you are behind a router.
|
||||
# Dumbed Down Definitions...
|
||||
# LAN (LOCAL area network) - typically consists of computers connected to the same router as you.
|
||||
# WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet).
|
||||
# x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers.
|
||||
# ---------------------------------------------------------------------------
|
||||
# Networking
|
||||
# ---------------------------------------------------------------------------
|
||||
# This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname
|
||||
# Common settings...
|
||||
# 127.0.0.1 - If you are playing alone on a test server
|
||||
# 192.168.x.x - This is if you are on a 192.168.x.x type network (behind a standard consumer router) and want other computers from JUST the internal network to be able to connect
|
||||
# x.x.x.x - WAN IP obtained from http://www.whatismyip.com/. This is if you want people outside your internal network to be able to connect to your server.
|
||||
# ---------------------------------------------------------------------------
|
||||
# Default: 127.0.0.1
|
||||
ExternalHostname = 127.0.0.1
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname.
|
||||
# This can be the internal IP such as 127.0.0.1 or the computer's IP such as 192.168.x.x.
|
||||
# ---------------------------------------------------------------------------
|
||||
# Default: 127.0.0.1
|
||||
InternalHostname = 127.0.0.1
|
||||
|
||||
# Bind ip of the LoginServer, use * to bind on all available IPs
|
||||
# Default: *
|
||||
LoginserverHostname = *
|
||||
|
||||
# Default: 2106
|
||||
LoginserverPort = 2105
|
||||
|
||||
# The address on which login will listen for GameServers, use * to bind on all available IPs
|
||||
# Default: *
|
||||
LoginHostname = 0.0.0.0
|
||||
|
||||
# The port on which login will listen for GameServers
|
||||
# Default: 9014
|
||||
LoginPort = 9014
|
||||
|
||||
# The delay in minutes after which the login updates the gameservers IP's (usefull when their ip is dynamic)
|
||||
# Default: 15
|
||||
IpUpdateTime = 15
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Security
|
||||
# ---------------------------------------------------------------------------
|
||||
# Default: True
|
||||
LogLoginController = True
|
||||
|
||||
# How many times you can provide an invalid account/pass before the IP gets banned.
|
||||
# Default: 10
|
||||
LoginTryBeforeBan = 10
|
||||
|
||||
# Time you won't be able to login back again after LoginTryBeforeBan tries to login.
|
||||
# Default: 600 (10 minutes)
|
||||
LoginBlockAfterBan = 600
|
||||
|
||||
# If set to True any GameServer can register on your login's free slots
|
||||
# Default: False
|
||||
AcceptNewGameServer = False
|
||||
|
||||
# Enforce GameGuard authorization from client?
|
||||
# If True, login server will kick client if the client bypassed GameGuard authentication.
|
||||
# Default: True
|
||||
ForceGGAuth = True
|
||||
|
||||
# Flood Protection. All values are in MILISECONDS.
|
||||
# Default: True
|
||||
EnableFloodProtection = True
|
||||
|
||||
# Default: 15
|
||||
FastConnectionLimit = 15
|
||||
|
||||
# Default: 700
|
||||
NormalConnectionTime = 700
|
||||
|
||||
# Default: 350
|
||||
FastConnectionTime = 350
|
||||
|
||||
# Default: 50
|
||||
MaxConnectionPerIP = 50
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Database
|
||||
# ---------------------------------------------------------------------------
|
||||
# Specify the appropriate driver and url for the database you're using.
|
||||
# Examples:
|
||||
# Driver = com.mysql.jdbc.Driver (default)
|
||||
# Driver = org.hsqldb.jdbcDriver
|
||||
# Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
|
||||
Driver = com.mysql.jdbc.Driver
|
||||
# Database URL
|
||||
# URL = jdbc:mysql://localhost/l2jdb (default)
|
||||
# URL = jdbc:hsqldb:hsql://localhost/l2jdb
|
||||
# URL = jdbc:sqlserver://localhost/database = l2jdb/user = sa/password =
|
||||
URL = jdbc:mysql://localhost/l2jdb
|
||||
# Database user info (default is "root" but it's not recommended)
|
||||
Login = root
|
||||
# Database connection password
|
||||
Password = w00t
|
||||
|
||||
# Default: 10
|
||||
MaximumDbConnections = 10
|
||||
|
||||
# Default: 0
|
||||
MaximumDbIdleTime = 0
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Misc.
|
||||
# ---------------------------------------------------------------------------
|
||||
# If False, the license (after the login) will not be shown.
|
||||
# Default: True
|
||||
ShowLicence = True
|
||||
|
||||
# Default: True
|
||||
AutoCreateAccounts = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Developer Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Default: False
|
||||
Debug = True
|
||||
|
||||
# Default: False
|
||||
Assert = False
|
||||
|
||||
# Default: False
|
||||
Developer = True
|
130
out/dist_l2c/config_login/servername.xml
Normal file
130
out/dist_l2c/config_login/servername.xml
Normal file
@@ -0,0 +1,130 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<servers_list>
|
||||
<server id="1" name="Bartz" />
|
||||
<server id="2" name="Sieghardt" />
|
||||
<server id="3" name="Kain" />
|
||||
<server id="4" name="Lionna" />
|
||||
<server id="5" name="Erica" />
|
||||
<server id="6" name="Gustin" />
|
||||
<server id="7" name="Devianne" />
|
||||
<server id="8" name="Hindemith" />
|
||||
<server id="9" name="Teon (EURO)" />
|
||||
<server id="10" name="Franz (EURO)" />
|
||||
<server id="11" name="Luna (EURO)" />
|
||||
<server id="12" name="Sayha" />
|
||||
<server id="13" name="Aria" />
|
||||
<server id="14" name="Phoenix" />
|
||||
<server id="15" name="Ceriel" />
|
||||
<server id="16" name="Fehyshar" />
|
||||
<server id="17" name="Elhwynna" />
|
||||
<server id="18" name="Ellikia" />
|
||||
<server id="19" name="Shikken" />
|
||||
<server id="20" name="Scryde" />
|
||||
<server id="21" name="Frikios" />
|
||||
<server id="22" name="Ophylia" />
|
||||
<server id="23" name="Shakdun" />
|
||||
<server id="24" name="Tarziph" />
|
||||
<server id="25" name="Aria" />
|
||||
<server id="26" name="Esenn" />
|
||||
<server id="27" name="Elcardia" />
|
||||
<server id="28" name="Yiana" />
|
||||
<server id="29" name="Seresin" />
|
||||
<server id="30" name="Tarkai" />
|
||||
<server id="31" name="Khadia" />
|
||||
<server id="32" name="Roien" />
|
||||
<server id="33" name="Gallint" />
|
||||
<server id="34" name="Cedric" />
|
||||
<server id="35" name="Nerufa" />
|
||||
<server id="36" name="Asterios" />
|
||||
<server id="37" name="Orfen" />
|
||||
<server id="38" name="Mitrael" />
|
||||
<server id="39" name="Thifiel" />
|
||||
<server id="40" name="Lithra" />
|
||||
<server id="41" name="Lockirin" />
|
||||
<server id="42" name="Kakai" />
|
||||
<server id="43" name="Cadmus" />
|
||||
<server id="44" name="Athebaldt" />
|
||||
<server id="45" name="Blackbird" />
|
||||
<server id="46" name="Ramsheart" />
|
||||
<server id="47" name="Esthus" />
|
||||
<server id="48" name="Vasper" />
|
||||
<server id="49" name="Lancer" />
|
||||
<server id="50" name="Ashton" />
|
||||
<server id="51" name="Waytrel" />
|
||||
<server id="52" name="Waltner" />
|
||||
<server id="53" name="Tahnford" />
|
||||
<server id="54" name="Hunter" />
|
||||
<server id="55" name="Dewell" />
|
||||
<server id="56" name="Rodemaye" />
|
||||
<server id="57" name="Ken Rauhel" />
|
||||
<server id="58" name="Ken Abigail" />
|
||||
<server id="59" name="Ken Orwen" />
|
||||
<server id="60" name="Van Holter" />
|
||||
<server id="61" name="Desperion" />
|
||||
<server id="62" name="Einhovant" />
|
||||
<server id="63" name="Schuneimann" />
|
||||
<server id="64" name="Faris" />
|
||||
<server id="65" name="Tor" />
|
||||
<server id="66" name="Carneiar" />
|
||||
<server id="67" name="Dwyllios" />
|
||||
<server id="68" name="Baium" />
|
||||
<server id="69" name="Hallate" />
|
||||
<server id="70" name="Zaken" />
|
||||
<server id="71" name="Core" />
|
||||
<server id="72" name="72" />
|
||||
<server id="73" name="73" />
|
||||
<server id="74" name="74" />
|
||||
<server id="75" name="75" />
|
||||
<server id="76" name="76" />
|
||||
<server id="77" name="77" />
|
||||
<server id="78" name="78" />
|
||||
<server id="79" name="79" />
|
||||
<server id="80" name="80" />
|
||||
<server id="81" name="81" />
|
||||
<server id="82" name="82" />
|
||||
<server id="83" name="83" />
|
||||
<server id="84" name="84" />
|
||||
<server id="85" name="85" />
|
||||
<server id="86" name="86" />
|
||||
<server id="87" name="87" />
|
||||
<server id="88" name="88" />
|
||||
<server id="89" name="89" />
|
||||
<server id="90" name="90" />
|
||||
<server id="91" name="91" />
|
||||
<server id="92" name="92" />
|
||||
<server id="93" name="93" />
|
||||
<server id="94" name="94" />
|
||||
<server id="95" name="95" />
|
||||
<server id="96" name="96" />
|
||||
<server id="97" name="97" />
|
||||
<server id="98" name="98" />
|
||||
<server id="99" name="99" />
|
||||
<server id="100" name="100" />
|
||||
<server id="101" name="101" />
|
||||
<server id="102" name="102" />
|
||||
<server id="103" name="103" />
|
||||
<server id="104" name="104" />
|
||||
<server id="105" name="105" />
|
||||
<server id="106" name="106" />
|
||||
<server id="107" name="107" />
|
||||
<server id="108" name="108" />
|
||||
<server id="109" name="109" />
|
||||
<server id="110" name="110" />
|
||||
<server id="111" name="111" />
|
||||
<server id="112" name="112" />
|
||||
<server id="113" name="113" />
|
||||
<server id="114" name="114" />
|
||||
<server id="115" name="115" />
|
||||
<server id="116" name="116" />
|
||||
<server id="117" name="117" />
|
||||
<server id="118" name="118" />
|
||||
<server id="119" name="119" />
|
||||
<server id="120" name="120" />
|
||||
<server id="121" name="121" />
|
||||
<server id="122" name="122" />
|
||||
<server id="123" name="123" />
|
||||
<server id="124" name="124" />
|
||||
<server id="125" name="125" />
|
||||
<server id="126" name="126" />
|
||||
<server id="127" name="??" />
|
||||
</servers_list>
|
27
out/dist_l2c/config_login/telnet.properties
Normal file
27
out/dist_l2c/config_login/telnet.properties
Normal file
@@ -0,0 +1,27 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Telnet Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
# ---------------------------------------------------------------------------
|
||||
# Allows text based monitoring and administration of L2J GS/LS
|
||||
# by using a telnet client. Communication protocol is insecure
|
||||
# and you should use SSL tunnels, VPN, etc. if you plan to connect
|
||||
# over non-trusted channels.
|
||||
# Default: False
|
||||
EnableTelnet = False
|
||||
|
||||
# This is the port L2J should listen to for incoming telnet
|
||||
# requests.
|
||||
# Default: 12345
|
||||
StatusPort = 12345
|
||||
|
||||
# If the following is not set, a random password is generated on server startup.
|
||||
# Usage: StatusPW = somePass
|
||||
StatusPW =
|
||||
|
||||
# This list can contain IPs or Hosts of clients you wish to allow. Hostnames must be resolvable to an IP.
|
||||
# Example: 0.0.0.0,host,0.0.0.1,host2,host3,host4,0.0.0.3
|
||||
# Default: 127.0.0.1,localhost
|
||||
ListOfHosts = 127.0.0.1,localhost
|
68
out/dist_l2c/log/gameserver.log
Normal file
68
out/dist_l2c/log/gameserver.log
Normal file
@@ -0,0 +1,68 @@
|
||||
===================================
|
||||
18:30:08.081: Starting game server...
|
||||
18:30:08.096: Config loaded.
|
||||
18:30:08.096: MySQL connection test OK
|
||||
18:30:08.768: IdFactory: used 10 object IDs, 234876928 bytes
|
||||
18:30:08.768: ItemTable: loading 2937 armors, 3498 weapons, 10042 etcitems
|
||||
18:30:08.768: ItemTable: max itemId = 22172 (armor 22172, etc 22153, weapon 20867)
|
||||
18:30:18.706: ===== ClientPool clients dump =====
|
||||
18:30:18.706: ===== ClientPool clients dump end =====
|
||||
18:30:21.143: ItemTable: loaded, used 2708318 bytes
|
||||
18:30:21.362: CharTemplateTable: loaded 103 character templates.
|
||||
18:30:21.362: Game server loaded in 13 seconds (13296 ms).
|
||||
===================================
|
||||
18:30:21.378: Connecting to login at 127.0.0.1:9014...
|
||||
18:30:23.737: ===== Throwing an exception... =====
|
||||
18:30:23.831: Got exception: test exception: max players: 10
|
||||
18:30:23.831: 0: L2C_Server_d!Exception::Exception() (0x005258D0 + 191) [v:\dev\l2\unlegits\trunk\l2c_server\utils\exception.cpp line 13]
|
||||
18:30:23.831: 1: L2C_Server_d!Main_OnTestExceptions() (0x004ED320 + 151) [v:\dev\l2\unlegits\trunk\l2c_server\l2serverd.cpp line 29]
|
||||
18:30:23.831: 2: L2C_Server_d!Main_OnButtonDebug() (0x004ED7E0 + 256) [v:\dev\l2\unlegits\trunk\l2c_server\l2serverd.cpp line 83]
|
||||
18:30:23.831: 3: L2C_Server_d!Main_OnCommand() (0x004EDB00 + 96) [v:\dev\l2\unlegits\trunk\l2c_server\l2serverd.cpp line 122]
|
||||
18:30:23.831: 4: L2C_Server_d!MainDlgProc() (0x004EDBA0 + 164) [v:\dev\l2\unlegits\trunk\l2c_server\l2serverd.cpp line 132]
|
||||
18:30:23.831: 5: USER32!InternalCallWinProc() (0x7E36870C + 40)
|
||||
18:30:23.831: 6: USER32!UserCallDlgProcCheckWow() (0x7E373C2F + 326)
|
||||
18:30:23.831: 7: USER32!DefDlgProcWorker() (0x7E373AB1 + 168)
|
||||
18:30:23.831: 8: USER32!DefDlgProcW() (0x7E373D3A + 34)
|
||||
18:30:23.831: 9: USER32!InternalCallWinProc() (0x7E36870C + 40)
|
||||
18:30:23.831: 10: USER32!UserCallWinProcCheckWow() (0x7E36875F + 336)
|
||||
18:30:23.831: 11: USER32!SendMessageWorker() (0x7E3791B3 + 1189)
|
||||
18:30:23.831: 12: USER32!SendMessageW() (0x7E37929A + 127)
|
||||
18:30:23.831: 13: COMCTL32!Button_NotifyParent() (0x773E7317 + 61)
|
||||
18:30:23.831: 14: COMCTL32!Button_ReleaseCapture() (0x773E735F + 215)
|
||||
18:30:23.831: 15: COMCTL32!Button_WndProc() (0x773E8EB4 + 2183)
|
||||
18:30:23.831: 16: USER32!InternalCallWinProc() (0x7E36870C + 40)
|
||||
18:30:23.831: 17: USER32!UserCallWinProcCheckWow() (0x7E36875F + 336)
|
||||
18:30:23.831: 18: USER32!DispatchMessageWorker() (0x7E3688F1 + 774)
|
||||
18:30:23.831: 19: USER32!DispatchMessageW() (0x7E368A01 + 15)
|
||||
18:30:23.831: 20: USER32!IsDialogMessageW() (0x7E377424 + 1394)
|
||||
18:30:23.846: 21: USER32!DialogBox2() (0x7E37757B + 324)
|
||||
18:30:23.846: 22: USER32!InternalDialogBox() (0x7E37490E + 208)
|
||||
18:30:23.846: 23: USER32!DialogBoxIndirectParamAorW() (0x7E3749D0 + 55)
|
||||
18:30:23.846: 24: USER32!DialogBoxParamW() (0x7E3747AB + 63)
|
||||
18:30:23.846: 25: L2C_Server_d!wWinMain() (0x004EDCA0 + 379) [v:\dev\l2\unlegits\trunk\l2c_server\l2serverd.cpp line 146]
|
||||
18:30:23.846: 26: L2C_Server_d!__tmainCRTStartup() (0x00615A50 + 357) [f:\dd\vctools\crt_bld\self_x86\crt\src\crt0.c line 189]
|
||||
18:30:23.846: 27: L2C_Server_d!wWinMainCRTStartup() (0x00615A30 + 15) [f:\dd\vctools\crt_bld\self_x86\crt\src\crt0.c line 172]
|
||||
18:30:23.846: 28: kernel32!BaseProcessStart() (0x7C817044 + 35)
|
||||
18:30:23.846: ===== Exceptions test complete =====
|
||||
18:30:26.378: LoginConnection thread: Exception: Connect to LS failed!
|
||||
18:30:26.378: 0: L2C_Server_d!Exception::Exception() (0x005258D0 + 191) [v:\dev\l2\unlegits\trunk\l2c_server\utils\exception.cpp line 13]
|
||||
18:30:26.378: 1: L2C_Server_d!LoginConnection::LS_ConnThread() (0x004F2BE0 + 579) [v:\dev\l2\unlegits\trunk\l2c_server\ls_connection.cpp line 91]
|
||||
18:30:26.378: 2: L2C_Server_d!_callthreadstartex() (0x0060F2A0 + 83) [f:\dd\vctools\crt_bld\self_x86\crt\src\threadex.c line 335]
|
||||
18:30:26.378: 3: L2C_Server_d!_threadstartex() (0x0060F1C0 + 164) [f:\dd\vctools\crt_bld\self_x86\crt\src\threadex.c line 260]
|
||||
18:30:26.378: 4: kernel32!BaseThreadStart() (0x7C80B6DC + 55)
|
||||
18:30:26.378: Connecting to login at 127.0.0.1:9014... (try #2)
|
||||
18:30:31.378: LoginConnection thread: Exception: Connect to LS failed!
|
||||
18:30:31.378: 0: L2C_Server_d!Exception::Exception() (0x005258D0 + 191) [v:\dev\l2\unlegits\trunk\l2c_server\utils\exception.cpp line 13]
|
||||
18:30:31.378: 1: L2C_Server_d!LoginConnection::LS_ConnThread() (0x004F2BE0 + 579) [v:\dev\l2\unlegits\trunk\l2c_server\ls_connection.cpp line 91]
|
||||
18:30:31.378: 2: L2C_Server_d!_callthreadstartex() (0x0060F2A0 + 83) [f:\dd\vctools\crt_bld\self_x86\crt\src\threadex.c line 335]
|
||||
18:30:31.378: 3: L2C_Server_d!_threadstartex() (0x0060F1C0 + 164) [f:\dd\vctools\crt_bld\self_x86\crt\src\threadex.c line 260]
|
||||
18:30:31.378: 4: kernel32!BaseThreadStart() (0x7C80B6DC + 55)
|
||||
18:30:31.393: Connecting to login at 127.0.0.1:9014... (try #3)
|
||||
18:30:36.393: LoginConnection thread: Exception: Connect to LS failed!
|
||||
18:30:36.393: 0: L2C_Server_d!Exception::Exception() (0x005258D0 + 191) [v:\dev\l2\unlegits\trunk\l2c_server\utils\exception.cpp line 13]
|
||||
18:30:36.393: 1: L2C_Server_d!LoginConnection::LS_ConnThread() (0x004F2BE0 + 579) [v:\dev\l2\unlegits\trunk\l2c_server\ls_connection.cpp line 91]
|
||||
18:30:36.393: 2: L2C_Server_d!_callthreadstartex() (0x0060F2A0 + 83) [f:\dd\vctools\crt_bld\self_x86\crt\src\threadex.c line 335]
|
||||
18:30:36.393: 3: L2C_Server_d!_threadstartex() (0x0060F1C0 + 164) [f:\dd\vctools\crt_bld\self_x86\crt\src\threadex.c line 260]
|
||||
18:30:36.393: 4: kernel32!BaseThreadStart() (0x7C80B6DC + 55)
|
||||
18:30:36.393: Connecting to login at 127.0.0.1:9014... (try #4)
|
||||
18:30:41.456: GS Stopped.
|
841
out/dist_l2c/log/loginserver.log
Normal file
841
out/dist_l2c/log/loginserver.log
Normal file
@@ -0,0 +1,841 @@
|
||||
18:28:31.268: LoginServer::start(): created thread 4316
|
||||
===================================
|
||||
18:28:31.284: Starting login server...
|
||||
18:28:31.299: Loading config...
|
||||
18:28:31.299: .\config_login\loginserver.properties: loaded 28 vars
|
||||
18:28:31.299: .\config_login\telnet.properties: loaded 4 vars
|
||||
18:28:31.299: Initializing MySQL... server localhost; db l2jdb; maximum connections 10
|
||||
18:28:31.299: Loading LoginController...
|
||||
18:28:31.299: Generating 10 RSA keys for communication... [||||||||||] OK
|
||||
18:28:32.424: Generated 20 blowfish keys.
|
||||
18:28:32.440: IP banned: 10.255.255.255; expires: NEVER
|
||||
18:28:32.440: IP banned: 10.254.254.254; expires: NEVER
|
||||
18:28:32.440: Loaded 2 IP bans.
|
||||
18:28:32.440: Loading GameServerTable...
|
||||
18:28:32.440: Loaded 127 server names.
|
||||
18:28:32.440: Loaded 1 registered game servers.
|
||||
18:28:32.440: Generating 10 RSA keys for GS communication... [||||||||||] OK
|
||||
18:28:32.612: Login server will listen to gameservers on IP 0.0.0.0
|
||||
18:28:32.643: Listening to gameservers on 0.0.0.0:9014
|
||||
18:28:32.643: Login server ready on *:2105
|
||||
18:28:32.643: Login server loaded in 1 seconds (1375 ms).
|
||||
===================================
|
||||
18:29:01.706: Accepted gameserver 127.0.0.1:2073...
|
||||
18:29:01.753: GSConnThread: sent InitLS
|
||||
18:29:01.768: GSConnThread: opcode 00
|
||||
18:29:01.768: GS: new BF key rcvd (len 40)
|
||||
18:29:01.768: GSConnThread: opcode 01
|
||||
18:29:01.768: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:01.862: Accepted gameserver 127.0.0.1:2074...
|
||||
18:29:01.862: GSConnThread: sent InitLS
|
||||
18:29:01.862: GSConnThread: opcode 00
|
||||
18:29:01.878: GS: new BF key rcvd (len 40)
|
||||
18:29:01.878: GSConnThread: opcode 01
|
||||
18:29:01.878: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:01.893: Accepted gameserver 127.0.0.1:2075...
|
||||
18:29:01.909: GSConnThread: sent InitLS
|
||||
18:29:01.924: GSConnThread: opcode 00
|
||||
18:29:01.940: GS: new BF key rcvd (len 40)
|
||||
18:29:01.940: GSConnThread: opcode 01
|
||||
18:29:01.940: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:01.956: Accepted gameserver 127.0.0.1:2076...
|
||||
18:29:01.971: GSConnThread: sent InitLS
|
||||
18:29:01.971: GSConnThread: opcode 00
|
||||
18:29:01.987: GS: new BF key rcvd (len 40)
|
||||
18:29:01.987: GSConnThread: opcode 01
|
||||
18:29:01.987: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.003: Accepted gameserver 127.0.0.1:2077...
|
||||
18:29:02.003: GSConnThread: sent InitLS
|
||||
18:29:02.018: GSConnThread: opcode 00
|
||||
18:29:02.018: GS: new BF key rcvd (len 40)
|
||||
18:29:02.018: GSConnThread: opcode 01
|
||||
18:29:02.018: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.034: Accepted gameserver 127.0.0.1:2078...
|
||||
18:29:02.034: GSConnThread: sent InitLS
|
||||
18:29:02.049: GSConnThread: opcode 00
|
||||
18:29:02.049: GS: new BF key rcvd (len 40)
|
||||
18:29:02.065: GSConnThread: opcode 01
|
||||
18:29:02.065: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.081: Accepted gameserver 127.0.0.1:2079...
|
||||
18:29:02.081: GSConnThread: sent InitLS
|
||||
18:29:02.081: GSConnThread: opcode 00
|
||||
18:29:02.081: GS: new BF key rcvd (len 40)
|
||||
18:29:02.081: GSConnThread: opcode 01
|
||||
18:29:02.081: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.096: Accepted gameserver 127.0.0.1:2080...
|
||||
18:29:02.096: GSConnThread: sent InitLS
|
||||
18:29:02.112: GSConnThread: opcode 00
|
||||
18:29:02.112: GS: new BF key rcvd (len 40)
|
||||
18:29:02.112: GSConnThread: opcode 01
|
||||
18:29:02.112: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.128: Accepted gameserver 127.0.0.1:2081...
|
||||
18:29:02.128: GSConnThread: sent InitLS
|
||||
18:29:02.159: GSConnThread: opcode 00
|
||||
18:29:02.159: GS: new BF key rcvd (len 40)
|
||||
18:29:02.159: GSConnThread: opcode 01
|
||||
18:29:02.174: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.190: Accepted gameserver 127.0.0.1:2082...
|
||||
18:29:02.190: GSConnThread: sent InitLS
|
||||
18:29:02.206: GSConnThread: opcode 00
|
||||
18:29:02.206: GS: new BF key rcvd (len 40)
|
||||
18:29:02.206: GSConnThread: opcode 01
|
||||
18:29:02.206: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.221: Accepted gameserver 127.0.0.1:2083...
|
||||
18:29:02.221: GSConnThread: sent InitLS
|
||||
18:29:02.237: GSConnThread: opcode 00
|
||||
18:29:02.237: GS: new BF key rcvd (len 40)
|
||||
18:29:02.237: GSConnThread: opcode 01
|
||||
18:29:02.237: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.253: Accepted gameserver 127.0.0.1:2084...
|
||||
18:29:02.253: GSConnThread: sent InitLS
|
||||
18:29:02.268: GSConnThread: opcode 00
|
||||
18:29:02.268: GS: new BF key rcvd (len 40)
|
||||
18:29:02.268: GSConnThread: opcode 01
|
||||
18:29:02.268: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.284: Accepted gameserver 127.0.0.1:2085...
|
||||
18:29:02.299: GSConnThread: sent InitLS
|
||||
18:29:02.315: GSConnThread: opcode 00
|
||||
18:29:02.315: GS: new BF key rcvd (len 40)
|
||||
18:29:02.315: GSConnThread: opcode 01
|
||||
18:29:02.315: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.331: Accepted gameserver 127.0.0.1:2086...
|
||||
18:29:02.346: GSConnThread: sent InitLS
|
||||
18:29:02.346: GSConnThread: opcode 00
|
||||
18:29:02.362: GS: new BF key rcvd (len 40)
|
||||
18:29:02.362: GSConnThread: opcode 01
|
||||
18:29:02.362: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.378: Accepted gameserver 127.0.0.1:2087...
|
||||
18:29:02.378: GSConnThread: sent InitLS
|
||||
18:29:02.393: GSConnThread: opcode 00
|
||||
18:29:02.393: GS: new BF key rcvd (len 40)
|
||||
18:29:02.393: GSConnThread: opcode 01
|
||||
18:29:02.393: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.409: Accepted gameserver 127.0.0.1:2088...
|
||||
18:29:02.409: GSConnThread: sent InitLS
|
||||
18:29:02.409: GSConnThread: opcode 00
|
||||
18:29:02.424: GS: new BF key rcvd (len 40)
|
||||
18:29:02.424: GSConnThread: opcode 01
|
||||
18:29:02.424: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.440: Accepted gameserver 127.0.0.1:2089...
|
||||
18:29:02.440: GSConnThread: sent InitLS
|
||||
18:29:02.440: GSConnThread: opcode 00
|
||||
18:29:02.456: GS: new BF key rcvd (len 40)
|
||||
18:29:02.456: GSConnThread: opcode 01
|
||||
18:29:02.471: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.487: Accepted gameserver 127.0.0.1:2090...
|
||||
18:29:02.487: GSConnThread: sent InitLS
|
||||
18:29:02.487: GSConnThread: opcode 00
|
||||
18:29:02.503: GS: new BF key rcvd (len 40)
|
||||
18:29:02.503: GSConnThread: opcode 01
|
||||
18:29:02.503: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.518: Accepted gameserver 127.0.0.1:2091...
|
||||
18:29:02.518: GSConnThread: sent InitLS
|
||||
18:29:02.534: GSConnThread: opcode 00
|
||||
18:29:02.534: GS: new BF key rcvd (len 40)
|
||||
18:29:02.534: GSConnThread: opcode 01
|
||||
18:29:02.534: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.565: Accepted gameserver 127.0.0.1:2092...
|
||||
18:29:02.565: GSConnThread: sent InitLS
|
||||
18:29:02.581: GSConnThread: opcode 00
|
||||
18:29:02.581: GS: new BF key rcvd (len 40)
|
||||
18:29:02.581: GSConnThread: opcode 01
|
||||
18:29:02.581: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.596: Accepted gameserver 127.0.0.1:2093...
|
||||
18:29:02.612: GSConnThread: sent InitLS
|
||||
18:29:02.612: GSConnThread: opcode 00
|
||||
18:29:02.612: GS: new BF key rcvd (len 40)
|
||||
18:29:02.612: GSConnThread: opcode 01
|
||||
18:29:02.612: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.643: Accepted gameserver 127.0.0.1:2094...
|
||||
18:29:02.643: GSConnThread: sent InitLS
|
||||
18:29:02.643: GSConnThread: opcode 00
|
||||
18:29:02.659: GS: new BF key rcvd (len 40)
|
||||
18:29:02.659: GSConnThread: opcode 01
|
||||
18:29:02.659: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.674: Accepted gameserver 127.0.0.1:2095...
|
||||
18:29:02.674: GSConnThread: sent InitLS
|
||||
18:29:02.690: GSConnThread: opcode 00
|
||||
18:29:02.690: GS: new BF key rcvd (len 40)
|
||||
18:29:02.690: GSConnThread: opcode 01
|
||||
18:29:02.690: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.706: Accepted gameserver 127.0.0.1:2096...
|
||||
18:29:02.706: GSConnThread: sent InitLS
|
||||
18:29:02.721: GSConnThread: opcode 00
|
||||
18:29:02.721: GS: new BF key rcvd (len 40)
|
||||
18:29:02.721: GSConnThread: opcode 01
|
||||
18:29:02.737: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.753: Accepted gameserver 127.0.0.1:2097...
|
||||
18:29:02.753: GSConnThread: sent InitLS
|
||||
18:29:02.768: GSConnThread: opcode 00
|
||||
18:29:02.768: GS: new BF key rcvd (len 40)
|
||||
18:29:02.768: GSConnThread: opcode 01
|
||||
18:29:02.768: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.784: Accepted gameserver 127.0.0.1:2098...
|
||||
18:29:02.784: GSConnThread: sent InitLS
|
||||
18:29:02.799: GSConnThread: opcode 00
|
||||
18:29:02.799: GS: new BF key rcvd (len 40)
|
||||
18:29:02.799: GSConnThread: opcode 01
|
||||
18:29:02.815: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.831: Accepted gameserver 127.0.0.1:2099...
|
||||
18:29:02.831: GSConnThread: sent InitLS
|
||||
18:29:02.831: GSConnThread: opcode 00
|
||||
18:29:02.846: GS: new BF key rcvd (len 40)
|
||||
18:29:02.846: GSConnThread: opcode 01
|
||||
18:29:02.846: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.862: Accepted gameserver 127.0.0.1:2100...
|
||||
18:29:02.878: GSConnThread: sent InitLS
|
||||
18:29:02.878: GSConnThread: opcode 00
|
||||
18:29:02.878: GS: new BF key rcvd (len 40)
|
||||
18:29:02.893: GSConnThread: opcode 01
|
||||
18:29:02.893: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.909: Accepted gameserver 127.0.0.1:2101...
|
||||
18:29:02.924: GSConnThread: sent InitLS
|
||||
18:29:02.924: GSConnThread: opcode 00
|
||||
18:29:02.924: GS: new BF key rcvd (len 40)
|
||||
18:29:02.940: GSConnThread: opcode 01
|
||||
18:29:02.940: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.956: Accepted gameserver 127.0.0.1:2102...
|
||||
18:29:02.956: GSConnThread: sent InitLS
|
||||
18:29:02.971: GSConnThread: opcode 00
|
||||
18:29:02.971: GS: new BF key rcvd (len 40)
|
||||
18:29:02.971: GSConnThread: opcode 01
|
||||
18:29:02.971: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:02.987: Accepted gameserver 127.0.0.1:2103...
|
||||
18:29:02.987: GSConnThread: sent InitLS
|
||||
18:29:02.987: GSConnThread: opcode 00
|
||||
18:29:02.987: GS: new BF key rcvd (len 40)
|
||||
18:29:03.003: GSConnThread: opcode 01
|
||||
18:29:03.003: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.018: Accepted gameserver 127.0.0.1:2104...
|
||||
18:29:03.018: GSConnThread: sent InitLS
|
||||
18:29:03.018: GSConnThread: opcode 00
|
||||
18:29:03.018: GS: new BF key rcvd (len 40)
|
||||
18:29:03.018: GSConnThread: opcode 01
|
||||
18:29:03.018: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.049: Accepted gameserver 127.0.0.1:2106...
|
||||
18:29:03.065: GSConnThread: sent InitLS
|
||||
18:29:03.065: GSConnThread: opcode 00
|
||||
18:29:03.065: GS: new BF key rcvd (len 40)
|
||||
18:29:03.065: GSConnThread: opcode 01
|
||||
18:29:03.065: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.081: Accepted gameserver 127.0.0.1:2107...
|
||||
18:29:03.081: GSConnThread: sent InitLS
|
||||
18:29:03.096: GSConnThread: opcode 00
|
||||
18:29:03.112: GS: new BF key rcvd (len 40)
|
||||
18:29:03.112: GSConnThread: opcode 01
|
||||
18:29:03.112: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.128: Accepted gameserver 127.0.0.1:2108...
|
||||
18:29:03.128: GSConnThread: sent InitLS
|
||||
18:29:03.128: GSConnThread: opcode 00
|
||||
18:29:03.128: GS: new BF key rcvd (len 40)
|
||||
18:29:03.143: GSConnThread: opcode 01
|
||||
18:29:03.143: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.159: Accepted gameserver 127.0.0.1:2109...
|
||||
18:29:03.159: GSConnThread: sent InitLS
|
||||
18:29:03.190: GSConnThread: opcode 00
|
||||
18:29:03.190: GS: new BF key rcvd (len 40)
|
||||
18:29:03.190: GSConnThread: opcode 01
|
||||
18:29:03.190: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.206: Accepted gameserver 127.0.0.1:2110...
|
||||
18:29:03.206: GSConnThread: sent InitLS
|
||||
18:29:03.206: GSConnThread: opcode 00
|
||||
18:29:03.206: GS: new BF key rcvd (len 40)
|
||||
18:29:03.221: GSConnThread: opcode 01
|
||||
18:29:03.221: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.237: Accepted gameserver 127.0.0.1:2111...
|
||||
18:29:03.237: GSConnThread: sent InitLS
|
||||
18:29:03.237: GSConnThread: opcode 00
|
||||
18:29:03.253: GS: new BF key rcvd (len 40)
|
||||
18:29:03.253: GSConnThread: opcode 01
|
||||
18:29:03.253: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.268: Accepted gameserver 127.0.0.1:2112...
|
||||
18:29:03.284: GSConnThread: sent InitLS
|
||||
18:29:03.284: GSConnThread: opcode 00
|
||||
18:29:03.284: GS: new BF key rcvd (len 40)
|
||||
18:29:03.299: GSConnThread: opcode 01
|
||||
18:29:03.299: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.315: Accepted gameserver 127.0.0.1:2113...
|
||||
18:29:03.346: GSConnThread: sent InitLS
|
||||
18:29:03.362: GSConnThread: opcode 00
|
||||
18:29:03.362: GS: new BF key rcvd (len 40)
|
||||
18:29:03.362: GSConnThread: opcode 01
|
||||
18:29:03.362: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.378: Accepted gameserver 127.0.0.1:2114...
|
||||
18:29:03.378: GSConnThread: sent InitLS
|
||||
18:29:03.393: GSConnThread: opcode 00
|
||||
18:29:03.393: GS: new BF key rcvd (len 40)
|
||||
18:29:03.393: GSConnThread: opcode 01
|
||||
18:29:03.393: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.409: Accepted gameserver 127.0.0.1:2115...
|
||||
18:29:03.424: GSConnThread: sent InitLS
|
||||
18:29:03.424: GSConnThread: opcode 00
|
||||
18:29:03.424: GS: new BF key rcvd (len 40)
|
||||
18:29:03.424: GSConnThread: opcode 01
|
||||
18:29:03.424: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.440: Accepted gameserver 127.0.0.1:2116...
|
||||
18:29:03.440: GSConnThread: sent InitLS
|
||||
18:29:03.440: GSConnThread: opcode 00
|
||||
18:29:03.440: GS: new BF key rcvd (len 40)
|
||||
18:29:03.456: GSConnThread: opcode 01
|
||||
18:29:03.471: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.487: Accepted gameserver 127.0.0.1:2117...
|
||||
18:29:03.503: GSConnThread: sent InitLS
|
||||
18:29:03.503: GSConnThread: opcode 00
|
||||
18:29:03.503: GS: new BF key rcvd (len 40)
|
||||
18:29:03.503: GSConnThread: opcode 01
|
||||
18:29:03.503: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.518: Accepted gameserver 127.0.0.1:2118...
|
||||
18:29:03.518: GSConnThread: sent InitLS
|
||||
18:29:03.518: GSConnThread: opcode 00
|
||||
18:29:03.534: GS: new BF key rcvd (len 40)
|
||||
18:29:03.534: GSConnThread: opcode 01
|
||||
18:29:03.534: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.549: Accepted gameserver 127.0.0.1:2119...
|
||||
18:29:03.549: GSConnThread: sent InitLS
|
||||
18:29:03.549: GSConnThread: opcode 00
|
||||
18:29:03.549: GS: new BF key rcvd (len 40)
|
||||
18:29:03.549: GSConnThread: opcode 01
|
||||
18:29:03.549: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.565: Accepted gameserver 127.0.0.1:2120...
|
||||
18:29:03.581: GSConnThread: sent InitLS
|
||||
18:29:03.581: GSConnThread: opcode 00
|
||||
18:29:03.596: GS: new BF key rcvd (len 40)
|
||||
18:29:03.596: GSConnThread: opcode 01
|
||||
18:29:03.596: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.612: Accepted gameserver 127.0.0.1:2121...
|
||||
18:29:03.612: GSConnThread: sent InitLS
|
||||
18:29:03.628: GSConnThread: opcode 00
|
||||
18:29:03.628: GS: new BF key rcvd (len 40)
|
||||
18:29:03.628: GSConnThread: opcode 01
|
||||
18:29:03.628: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.643: Accepted gameserver 127.0.0.1:2122...
|
||||
18:29:03.643: GSConnThread: sent InitLS
|
||||
18:29:03.659: GSConnThread: opcode 00
|
||||
18:29:03.659: GS: new BF key rcvd (len 40)
|
||||
18:29:03.659: GSConnThread: opcode 01
|
||||
18:29:03.659: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.674: Accepted gameserver 127.0.0.1:2123...
|
||||
18:29:03.674: GSConnThread: sent InitLS
|
||||
18:29:03.690: GSConnThread: opcode 00
|
||||
18:29:03.690: GS: new BF key rcvd (len 40)
|
||||
18:29:03.706: GSConnThread: opcode 01
|
||||
18:29:03.706: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.721: Accepted gameserver 127.0.0.1:2124...
|
||||
18:29:03.721: GSConnThread: sent InitLS
|
||||
18:29:03.737: GSConnThread: opcode 00
|
||||
18:29:03.737: GS: new BF key rcvd (len 40)
|
||||
18:29:03.737: GSConnThread: opcode 01
|
||||
18:29:03.737: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.753: Accepted gameserver 127.0.0.1:2125...
|
||||
18:29:03.768: GSConnThread: sent InitLS
|
||||
18:29:03.768: GSConnThread: opcode 00
|
||||
18:29:03.768: GS: new BF key rcvd (len 40)
|
||||
18:29:03.768: GSConnThread: opcode 01
|
||||
18:29:03.768: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.784: Accepted gameserver 127.0.0.1:2126...
|
||||
18:29:03.784: GSConnThread: sent InitLS
|
||||
18:29:03.784: GSConnThread: opcode 00
|
||||
18:29:03.799: GS: new BF key rcvd (len 40)
|
||||
18:29:03.799: GSConnThread: opcode 01
|
||||
18:29:03.799: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.815: Accepted gameserver 127.0.0.1:2127...
|
||||
18:29:03.831: GSConnThread: sent InitLS
|
||||
18:29:03.831: GSConnThread: opcode 00
|
||||
18:29:03.846: GS: new BF key rcvd (len 40)
|
||||
18:29:03.846: GSConnThread: opcode 01
|
||||
18:29:03.846: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.862: Accepted gameserver 127.0.0.1:2128...
|
||||
18:29:03.862: GSConnThread: sent InitLS
|
||||
18:29:03.862: GSConnThread: opcode 00
|
||||
18:29:03.862: GS: new BF key rcvd (len 40)
|
||||
18:29:03.862: GSConnThread: opcode 01
|
||||
18:29:03.862: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.893: Accepted gameserver 127.0.0.1:2129...
|
||||
18:29:03.893: GSConnThread: sent InitLS
|
||||
18:29:03.893: GSConnThread: opcode 00
|
||||
18:29:03.893: GS: new BF key rcvd (len 40)
|
||||
18:29:03.893: GSConnThread: opcode 01
|
||||
18:29:03.893: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.909: Accepted gameserver 127.0.0.1:2130...
|
||||
18:29:03.909: GSConnThread: sent InitLS
|
||||
18:29:03.940: GSConnThread: opcode 00
|
||||
18:29:03.940: GS: new BF key rcvd (len 40)
|
||||
18:29:03.940: GSConnThread: opcode 01
|
||||
18:29:03.940: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.956: Accepted gameserver 127.0.0.1:2131...
|
||||
18:29:03.956: GSConnThread: sent InitLS
|
||||
18:29:03.956: GSConnThread: opcode 00
|
||||
18:29:03.971: GS: new BF key rcvd (len 40)
|
||||
18:29:03.971: GSConnThread: opcode 01
|
||||
18:29:03.971: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:03.987: Accepted gameserver 127.0.0.1:2132...
|
||||
18:29:03.987: GSConnThread: sent InitLS
|
||||
18:29:03.987: GSConnThread: opcode 00
|
||||
18:29:04.003: GS: new BF key rcvd (len 40)
|
||||
18:29:04.003: GSConnThread: opcode 01
|
||||
18:29:04.003: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:04.018: Accepted gameserver 127.0.0.1:2133...
|
||||
18:29:04.018: GSConnThread: sent InitLS
|
||||
18:29:04.034: GSConnThread: opcode 00
|
||||
18:29:04.049: GS: new BF key rcvd (len 39)
|
||||
18:29:04.049: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.065: Accepted gameserver 127.0.0.1:2134...
|
||||
18:29:04.065: GSConnThread: sent InitLS
|
||||
18:29:04.065: GSConnThread: opcode 00
|
||||
18:29:04.065: GS: new BF key rcvd (len 39)
|
||||
18:29:04.065: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.081: Accepted gameserver 127.0.0.1:2135...
|
||||
18:29:04.096: GSConnThread: sent InitLS
|
||||
18:29:04.096: GSConnThread: opcode 00
|
||||
18:29:04.096: GS: new BF key rcvd (len 39)
|
||||
18:29:04.096: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.112: Accepted gameserver 127.0.0.1:2136...
|
||||
18:29:04.112: GSConnThread: sent InitLS
|
||||
18:29:04.112: GSConnThread: opcode 00
|
||||
18:29:04.112: GS: new BF key rcvd (len 39)
|
||||
18:29:04.128: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.128: Accepted gameserver 127.0.0.1:2137...
|
||||
18:29:04.128: GSConnThread: sent InitLS
|
||||
18:29:04.143: GSConnThread: opcode 00
|
||||
18:29:04.143: GS: new BF key rcvd (len 39)
|
||||
18:29:04.143: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.174: Accepted gameserver 127.0.0.1:2138...
|
||||
18:29:04.174: GSConnThread: sent InitLS
|
||||
18:29:04.190: GSConnThread: opcode 00
|
||||
18:29:04.190: GS: new BF key rcvd (len 39)
|
||||
18:29:04.190: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.206: Accepted gameserver 127.0.0.1:2139...
|
||||
18:29:04.206: GSConnThread: sent InitLS
|
||||
18:29:04.206: GSConnThread: opcode 00
|
||||
18:29:04.206: GS: new BF key rcvd (len 39)
|
||||
18:29:04.206: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.221: Accepted gameserver 127.0.0.1:2140...
|
||||
18:29:04.237: GSConnThread: sent InitLS
|
||||
18:29:04.253: GSConnThread: opcode 00
|
||||
18:29:04.253: GS: new BF key rcvd (len 39)
|
||||
18:29:04.253: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.268: Accepted gameserver 127.0.0.1:2141...
|
||||
18:29:04.268: GSConnThread: sent InitLS
|
||||
18:29:04.284: GSConnThread: opcode 00
|
||||
18:29:04.284: GS: new BF key rcvd (len 39)
|
||||
18:29:04.284: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.299: Accepted gameserver 127.0.0.1:2142...
|
||||
18:29:04.299: GSConnThread: sent InitLS
|
||||
18:29:04.315: GSConnThread: opcode 00
|
||||
18:29:04.315: GS: new BF key rcvd (len 39)
|
||||
18:29:04.315: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.331: Accepted gameserver 127.0.0.1:2143...
|
||||
18:29:04.346: GSConnThread: sent InitLS
|
||||
18:29:04.346: GSConnThread: opcode 00
|
||||
18:29:04.346: GS: new BF key rcvd (len 39)
|
||||
18:29:04.346: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.362: Accepted gameserver 127.0.0.1:2144...
|
||||
18:29:04.362: GSConnThread: sent InitLS
|
||||
18:29:04.362: GSConnThread: opcode 00
|
||||
18:29:04.362: GS: new BF key rcvd (len 39)
|
||||
18:29:04.362: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.378: Accepted gameserver 127.0.0.1:2145...
|
||||
18:29:04.393: GSConnThread: sent InitLS
|
||||
18:29:04.393: GSConnThread: opcode 00
|
||||
18:29:04.393: GS: new BF key rcvd (len 39)
|
||||
18:29:04.393: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.409: Accepted gameserver 127.0.0.1:2146...
|
||||
18:29:04.409: GSConnThread: sent InitLS
|
||||
18:29:04.409: GSConnThread: opcode 00
|
||||
18:29:04.424: GS: new BF key rcvd (len 39)
|
||||
18:29:04.424: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.424: Accepted gameserver 127.0.0.1:2147...
|
||||
18:29:04.440: GSConnThread: sent InitLS
|
||||
18:29:04.440: GSConnThread: opcode 00
|
||||
18:29:04.440: GS: new BF key rcvd (len 39)
|
||||
18:29:04.440: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.456: Accepted gameserver 127.0.0.1:2148...
|
||||
18:29:04.456: GSConnThread: sent InitLS
|
||||
18:29:04.456: GSConnThread: opcode 00
|
||||
18:29:04.456: GS: new BF key rcvd (len 39)
|
||||
18:29:04.456: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.471: Accepted gameserver 127.0.0.1:2149...
|
||||
18:29:04.471: GSConnThread: sent InitLS
|
||||
18:29:04.471: GSConnThread: opcode 00
|
||||
18:29:04.503: GS: new BF key rcvd (len 39)
|
||||
18:29:04.503: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.518: Accepted gameserver 127.0.0.1:2150...
|
||||
18:29:04.518: GSConnThread: sent InitLS
|
||||
18:29:04.534: GSConnThread: opcode 00
|
||||
18:29:04.534: GS: new BF key rcvd (len 39)
|
||||
18:29:04.534: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.549: Accepted gameserver 127.0.0.1:2151...
|
||||
18:29:04.565: GSConnThread: sent InitLS
|
||||
18:29:04.565: GSConnThread: opcode 00
|
||||
18:29:04.565: GS: new BF key rcvd (len 39)
|
||||
18:29:04.565: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.581: Accepted gameserver 127.0.0.1:2152...
|
||||
18:29:04.581: GSConnThread: sent InitLS
|
||||
18:29:04.596: GSConnThread: opcode 00
|
||||
18:29:04.612: GS: new BF key rcvd (len 39)
|
||||
18:29:04.612: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.612: Accepted gameserver 127.0.0.1:2153...
|
||||
18:29:04.612: GSConnThread: sent InitLS
|
||||
18:29:04.628: GSConnThread: opcode 00
|
||||
18:29:04.628: GS: new BF key rcvd (len 39)
|
||||
18:29:04.628: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.643: Accepted gameserver 127.0.0.1:2154...
|
||||
18:29:04.643: GSConnThread: sent InitLS
|
||||
18:29:04.643: GSConnThread: opcode 00
|
||||
18:29:04.643: GS: new BF key rcvd (len 39)
|
||||
18:29:04.643: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.659: Accepted gameserver 127.0.0.1:2155...
|
||||
18:29:04.659: GSConnThread: sent InitLS
|
||||
18:29:04.674: GSConnThread: opcode 00
|
||||
18:29:04.674: GS: new BF key rcvd (len 39)
|
||||
18:29:04.674: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.690: Accepted gameserver 127.0.0.1:2156...
|
||||
18:29:04.690: GSConnThread: sent InitLS
|
||||
18:29:04.706: GSConnThread: opcode 00
|
||||
18:29:04.706: GS: new BF key rcvd (len 39)
|
||||
18:29:04.706: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.721: Accepted gameserver 127.0.0.1:2157...
|
||||
18:29:04.721: GSConnThread: sent InitLS
|
||||
18:29:04.721: GSConnThread: opcode 00
|
||||
18:29:04.721: GS: new BF key rcvd (len 39)
|
||||
18:29:04.721: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.737: Accepted gameserver 127.0.0.1:2158...
|
||||
18:29:04.737: GSConnThread: sent InitLS
|
||||
18:29:04.753: GSConnThread: opcode 00
|
||||
18:29:04.753: GS: new BF key rcvd (len 39)
|
||||
18:29:04.753: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.768: Accepted gameserver 127.0.0.1:2160...
|
||||
18:29:04.768: GSConnThread: sent InitLS
|
||||
18:29:04.784: GSConnThread: opcode 00
|
||||
18:29:04.784: GS: new BF key rcvd (len 39)
|
||||
18:29:04.784: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.815: Accepted gameserver 127.0.0.1:2161...
|
||||
18:29:04.831: GSConnThread: sent InitLS
|
||||
18:29:04.846: GSConnThread: opcode 00
|
||||
18:29:04.846: GS: new BF key rcvd (len 39)
|
||||
18:29:04.846: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.862: Accepted gameserver 127.0.0.1:2162...
|
||||
18:29:04.862: GSConnThread: sent InitLS
|
||||
18:29:04.862: GSConnThread: opcode 00
|
||||
18:29:04.862: GS: new BF key rcvd (len 39)
|
||||
18:29:04.862: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.878: Accepted gameserver 127.0.0.1:2163...
|
||||
18:29:04.878: GSConnThread: sent InitLS
|
||||
18:29:04.878: GSConnThread: opcode 00
|
||||
18:29:04.893: GS: new BF key rcvd (len 39)
|
||||
18:29:04.893: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.909: Accepted gameserver 127.0.0.1:2164...
|
||||
18:29:04.909: GSConnThread: sent InitLS
|
||||
18:29:04.924: GSConnThread: opcode 00
|
||||
18:29:04.924: GS: new BF key rcvd (len 39)
|
||||
18:29:04.924: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.924: Accepted gameserver 127.0.0.1:2165...
|
||||
18:29:04.940: GSConnThread: sent InitLS
|
||||
18:29:04.940: GSConnThread: opcode 00
|
||||
18:29:04.956: GS: new BF key rcvd (len 39)
|
||||
18:29:04.971: Incorrect checksum from GameServer 127.0.0.1. Close connection
|
||||
18:29:04.987: Accepted gameserver 127.0.0.1:2166...
|
||||
18:29:04.987: GSConnThread: sent InitLS
|
||||
18:29:05.003: GSConnThread: opcode 00
|
||||
18:29:05.018: GS: new BF key rcvd (len 40)
|
||||
18:29:05.034: GSConnThread: opcode 01
|
||||
18:29:05.034: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.049: Accepted gameserver 127.0.0.1:2167...
|
||||
18:29:05.049: GSConnThread: sent InitLS
|
||||
18:29:05.065: GSConnThread: opcode 00
|
||||
18:29:05.065: GS: new BF key rcvd (len 40)
|
||||
18:29:05.065: GSConnThread: opcode 01
|
||||
18:29:05.065: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.081: Accepted gameserver 127.0.0.1:2168...
|
||||
18:29:05.081: GSConnThread: sent InitLS
|
||||
18:29:05.081: GSConnThread: opcode 00
|
||||
18:29:05.081: GS: new BF key rcvd (len 40)
|
||||
18:29:05.081: GSConnThread: opcode 01
|
||||
18:29:05.081: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.112: Accepted gameserver 127.0.0.1:2169...
|
||||
18:29:05.112: GSConnThread: sent InitLS
|
||||
18:29:05.128: GSConnThread: opcode 00
|
||||
18:29:05.143: GS: new BF key rcvd (len 40)
|
||||
18:29:05.143: GSConnThread: opcode 01
|
||||
18:29:05.143: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.159: Accepted gameserver 127.0.0.1:2170...
|
||||
18:29:05.159: GSConnThread: sent InitLS
|
||||
18:29:05.174: GSConnThread: opcode 00
|
||||
18:29:05.174: GS: new BF key rcvd (len 40)
|
||||
18:29:05.174: GSConnThread: opcode 01
|
||||
18:29:05.174: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.206: Accepted gameserver 127.0.0.1:2171...
|
||||
18:29:05.206: GSConnThread: sent InitLS
|
||||
18:29:05.221: GSConnThread: opcode 00
|
||||
18:29:05.221: GS: new BF key rcvd (len 40)
|
||||
18:29:05.221: GSConnThread: opcode 01
|
||||
18:29:05.221: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.237: Accepted gameserver 127.0.0.1:2172...
|
||||
18:29:05.237: GSConnThread: sent InitLS
|
||||
18:29:05.253: GSConnThread: opcode 00
|
||||
18:29:05.268: GS: new BF key rcvd (len 40)
|
||||
18:29:05.268: GSConnThread: opcode 01
|
||||
18:29:05.268: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.299: Accepted gameserver 127.0.0.1:2173...
|
||||
18:29:05.299: GSConnThread: sent InitLS
|
||||
18:29:05.299: GSConnThread: opcode 00
|
||||
18:29:05.299: GS: new BF key rcvd (len 40)
|
||||
18:29:05.299: GSConnThread: opcode 01
|
||||
18:29:05.299: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.315: Accepted gameserver 127.0.0.1:2174...
|
||||
18:29:05.315: GSConnThread: sent InitLS
|
||||
18:29:05.331: GSConnThread: opcode 00
|
||||
18:29:05.331: GS: new BF key rcvd (len 40)
|
||||
18:29:05.346: GSConnThread: opcode 01
|
||||
18:29:05.346: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.362: Accepted gameserver 127.0.0.1:2175...
|
||||
18:29:05.362: GSConnThread: sent InitLS
|
||||
18:29:05.378: GSConnThread: opcode 00
|
||||
18:29:05.378: GS: new BF key rcvd (len 40)
|
||||
18:29:05.393: GSConnThread: opcode 01
|
||||
18:29:05.393: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.409: Accepted gameserver 127.0.0.1:2176...
|
||||
18:29:05.409: GSConnThread: sent InitLS
|
||||
18:29:05.409: GSConnThread: opcode 00
|
||||
18:29:05.409: GS: new BF key rcvd (len 40)
|
||||
18:29:05.424: GSConnThread: opcode 01
|
||||
18:29:05.424: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.440: Accepted gameserver 127.0.0.1:2177...
|
||||
18:29:05.440: GSConnThread: sent InitLS
|
||||
18:29:05.456: GSConnThread: opcode 00
|
||||
18:29:05.456: GS: new BF key rcvd (len 40)
|
||||
18:29:05.456: GSConnThread: opcode 01
|
||||
18:29:05.456: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.487: Accepted gameserver 127.0.0.1:2178...
|
||||
18:29:05.503: GSConnThread: sent InitLS
|
||||
18:29:05.503: GSConnThread: opcode 00
|
||||
18:29:05.518: GS: new BF key rcvd (len 40)
|
||||
18:29:05.518: GSConnThread: opcode 01
|
||||
18:29:05.518: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.549: Accepted gameserver 127.0.0.1:2179...
|
||||
18:29:05.549: GSConnThread: sent InitLS
|
||||
18:29:05.565: GSConnThread: opcode 00
|
||||
18:29:05.565: GS: new BF key rcvd (len 40)
|
||||
18:29:05.565: GSConnThread: opcode 01
|
||||
18:29:05.565: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.596: Accepted gameserver 127.0.0.1:2180...
|
||||
18:29:05.596: GSConnThread: sent InitLS
|
||||
18:29:05.612: GSConnThread: opcode 00
|
||||
18:29:05.612: GS: new BF key rcvd (len 40)
|
||||
18:29:05.628: GSConnThread: opcode 01
|
||||
18:29:05.628: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.643: Accepted gameserver 127.0.0.1:2181...
|
||||
18:29:05.659: GSConnThread: sent InitLS
|
||||
18:29:05.674: GSConnThread: opcode 00
|
||||
18:29:05.674: GS: new BF key rcvd (len 40)
|
||||
18:29:05.690: GSConnThread: opcode 01
|
||||
18:29:05.690: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.706: Accepted gameserver 127.0.0.1:2182...
|
||||
18:29:05.706: GSConnThread: sent InitLS
|
||||
18:29:05.706: GSConnThread: opcode 00
|
||||
18:29:05.721: GS: new BF key rcvd (len 40)
|
||||
18:29:05.721: GSConnThread: opcode 01
|
||||
18:29:05.721: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.753: Accepted gameserver 127.0.0.1:2183...
|
||||
18:29:05.753: GSConnThread: sent InitLS
|
||||
18:29:05.768: GSConnThread: opcode 00
|
||||
18:29:05.768: GS: new BF key rcvd (len 40)
|
||||
18:29:05.768: GSConnThread: opcode 01
|
||||
18:29:05.768: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.784: Accepted gameserver 127.0.0.1:2184...
|
||||
18:29:05.784: GSConnThread: sent InitLS
|
||||
18:29:05.799: GSConnThread: opcode 00
|
||||
18:29:05.799: GS: new BF key rcvd (len 40)
|
||||
18:29:05.799: GSConnThread: opcode 01
|
||||
18:29:05.815: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.831: Accepted gameserver 127.0.0.1:2185...
|
||||
18:29:05.831: GSConnThread: sent InitLS
|
||||
18:29:05.831: GSConnThread: opcode 00
|
||||
18:29:05.846: GS: new BF key rcvd (len 40)
|
||||
18:29:05.846: GSConnThread: opcode 01
|
||||
18:29:05.846: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.862: Accepted gameserver 127.0.0.1:2186...
|
||||
18:29:05.878: GSConnThread: sent InitLS
|
||||
18:29:05.878: GSConnThread: opcode 00
|
||||
18:29:05.878: GS: new BF key rcvd (len 40)
|
||||
18:29:05.878: GSConnThread: opcode 01
|
||||
18:29:05.878: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.909: Accepted gameserver 127.0.0.1:2187...
|
||||
18:29:05.909: GSConnThread: sent InitLS
|
||||
18:29:05.909: GSConnThread: opcode 00
|
||||
18:29:05.909: GS: new BF key rcvd (len 40)
|
||||
18:29:05.924: GSConnThread: opcode 01
|
||||
18:29:05.924: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:05.940: Accepted gameserver 127.0.0.1:2188...
|
||||
18:29:05.956: GSConnThread: sent InitLS
|
||||
18:29:05.971: GSConnThread: opcode 00
|
||||
18:29:05.971: GS: new BF key rcvd (len 40)
|
||||
18:29:05.971: GSConnThread: opcode 01
|
||||
18:29:05.971: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.003: Accepted gameserver 127.0.0.1:2189...
|
||||
18:29:06.003: GSConnThread: sent InitLS
|
||||
18:29:06.003: GSConnThread: opcode 00
|
||||
18:29:06.018: GS: new BF key rcvd (len 40)
|
||||
18:29:06.018: GSConnThread: opcode 01
|
||||
18:29:06.018: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.034: Accepted gameserver 127.0.0.1:2190...
|
||||
18:29:06.034: GSConnThread: sent InitLS
|
||||
18:29:06.034: GSConnThread: opcode 00
|
||||
18:29:06.049: GS: new BF key rcvd (len 40)
|
||||
18:29:06.049: GSConnThread: opcode 01
|
||||
18:29:06.049: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.081: Accepted gameserver 127.0.0.1:2191...
|
||||
18:29:06.081: GSConnThread: sent InitLS
|
||||
18:29:06.081: GSConnThread: opcode 00
|
||||
18:29:06.096: GS: new BF key rcvd (len 40)
|
||||
18:29:06.112: GSConnThread: opcode 01
|
||||
18:29:06.112: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.128: Accepted gameserver 127.0.0.1:2192...
|
||||
18:29:06.143: GSConnThread: sent InitLS
|
||||
18:29:06.174: GSConnThread: opcode 00
|
||||
18:29:06.174: GS: new BF key rcvd (len 40)
|
||||
18:29:06.174: GSConnThread: opcode 01
|
||||
18:29:06.174: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.190: Accepted gameserver 127.0.0.1:2193...
|
||||
18:29:06.190: GSConnThread: sent InitLS
|
||||
18:29:06.206: GSConnThread: opcode 00
|
||||
18:29:06.206: GS: new BF key rcvd (len 40)
|
||||
18:29:06.206: GSConnThread: opcode 01
|
||||
18:29:06.206: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.221: Accepted gameserver 127.0.0.1:2194...
|
||||
18:29:06.221: GSConnThread: sent InitLS
|
||||
18:29:06.237: GSConnThread: opcode 00
|
||||
18:29:06.237: GS: new BF key rcvd (len 40)
|
||||
18:29:06.253: GSConnThread: opcode 01
|
||||
18:29:06.253: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.268: Accepted gameserver 127.0.0.1:2195...
|
||||
18:29:06.268: GSConnThread: sent InitLS
|
||||
18:29:06.284: GSConnThread: opcode 00
|
||||
18:29:06.284: GS: new BF key rcvd (len 40)
|
||||
18:29:06.284: GSConnThread: opcode 01
|
||||
18:29:06.284: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.299: Accepted gameserver 127.0.0.1:2196...
|
||||
18:29:06.299: GSConnThread: sent InitLS
|
||||
18:29:06.315: GSConnThread: opcode 00
|
||||
18:29:06.331: GS: new BF key rcvd (len 40)
|
||||
18:29:06.331: GSConnThread: opcode 01
|
||||
18:29:06.331: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.346: Accepted gameserver 127.0.0.1:2197...
|
||||
18:29:06.346: GSConnThread: sent InitLS
|
||||
18:29:06.362: GSConnThread: opcode 00
|
||||
18:29:06.362: GS: new BF key rcvd (len 40)
|
||||
18:29:06.362: GSConnThread: opcode 01
|
||||
18:29:06.362: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.378: Accepted gameserver 127.0.0.1:2198...
|
||||
18:29:06.378: GSConnThread: sent InitLS
|
||||
18:29:06.393: GSConnThread: opcode 00
|
||||
18:29:06.393: GS: new BF key rcvd (len 40)
|
||||
18:29:06.409: GSConnThread: opcode 01
|
||||
18:29:06.409: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.424: Accepted gameserver 127.0.0.1:2199...
|
||||
18:29:06.424: GSConnThread: sent InitLS
|
||||
18:29:06.440: GSConnThread: opcode 00
|
||||
18:29:06.440: GS: new BF key rcvd (len 40)
|
||||
18:29:06.440: GSConnThread: opcode 01
|
||||
18:29:06.440: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.456: Accepted gameserver 127.0.0.1:2200...
|
||||
18:29:06.456: GSConnThread: sent InitLS
|
||||
18:29:06.471: GSConnThread: opcode 00
|
||||
18:29:06.471: GS: new BF key rcvd (len 40)
|
||||
18:29:06.471: GSConnThread: opcode 01
|
||||
18:29:06.471: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.487: Accepted gameserver 127.0.0.1:2201...
|
||||
18:29:06.487: GSConnThread: sent InitLS
|
||||
18:29:06.487: GSConnThread: opcode 00
|
||||
18:29:06.487: GS: new BF key rcvd (len 40)
|
||||
18:29:06.503: GSConnThread: opcode 01
|
||||
18:29:06.503: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.518: Accepted gameserver 127.0.0.1:2202...
|
||||
18:29:06.518: GSConnThread: sent InitLS
|
||||
18:29:06.534: GSConnThread: opcode 00
|
||||
18:29:06.534: GS: new BF key rcvd (len 40)
|
||||
18:29:06.534: GSConnThread: opcode 01
|
||||
18:29:06.534: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.549: Accepted gameserver 127.0.0.1:2203...
|
||||
18:29:06.565: GSConnThread: sent InitLS
|
||||
18:29:06.565: GSConnThread: opcode 00
|
||||
18:29:06.565: GS: new BF key rcvd (len 40)
|
||||
18:29:06.565: GSConnThread: opcode 01
|
||||
18:29:06.565: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.581: Accepted gameserver 127.0.0.1:2204...
|
||||
18:29:06.596: GSConnThread: sent InitLS
|
||||
18:29:06.612: GSConnThread: opcode 00
|
||||
18:29:06.612: GS: new BF key rcvd (len 40)
|
||||
18:29:06.612: GSConnThread: opcode 01
|
||||
18:29:06.612: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.643: Accepted gameserver 127.0.0.1:2205...
|
||||
18:29:06.643: GSConnThread: sent InitLS
|
||||
18:29:06.659: GSConnThread: opcode 00
|
||||
18:29:06.674: GS: new BF key rcvd (len 40)
|
||||
18:29:06.674: GSConnThread: opcode 01
|
||||
18:29:06.674: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.690: Accepted gameserver 127.0.0.1:2206...
|
||||
18:29:06.706: GSConnThread: sent InitLS
|
||||
18:29:06.721: GSConnThread: opcode 00
|
||||
18:29:06.721: GS: new BF key rcvd (len 40)
|
||||
18:29:06.721: GSConnThread: opcode 01
|
||||
18:29:06.721: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.753: Accepted gameserver 127.0.0.1:2207...
|
||||
18:29:06.753: GSConnThread: sent InitLS
|
||||
18:29:06.753: GSConnThread: opcode 00
|
||||
18:29:06.768: GS: new BF key rcvd (len 40)
|
||||
18:29:06.768: GSConnThread: opcode 01
|
||||
18:29:06.768: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.784: Accepted gameserver 127.0.0.1:2208...
|
||||
18:29:06.784: GSConnThread: sent InitLS
|
||||
18:29:06.784: GSConnThread: opcode 00
|
||||
18:29:06.784: GS: new BF key rcvd (len 40)
|
||||
18:29:06.784: GSConnThread: opcode 01
|
||||
18:29:06.799: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.815: Accepted gameserver 127.0.0.1:2209...
|
||||
18:29:06.831: GSConnThread: sent InitLS
|
||||
18:29:06.846: GSConnThread: opcode 00
|
||||
18:29:06.862: GS: new BF key rcvd (len 40)
|
||||
18:29:06.862: GSConnThread: opcode 01
|
||||
18:29:06.862: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.878: Accepted gameserver 127.0.0.1:2210...
|
||||
18:29:06.878: GSConnThread: sent InitLS
|
||||
18:29:06.878: GSConnThread: opcode 00
|
||||
18:29:06.893: GS: new BF key rcvd (len 40)
|
||||
18:29:06.893: GSConnThread: opcode 01
|
||||
18:29:06.893: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.924: Accepted gameserver 127.0.0.1:2211...
|
||||
18:29:06.924: GSConnThread: sent InitLS
|
||||
18:29:06.940: GSConnThread: opcode 00
|
||||
18:29:06.940: GS: new BF key rcvd (len 40)
|
||||
18:29:06.940: GSConnThread: opcode 01
|
||||
18:29:06.956: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.971: Accepted gameserver 127.0.0.1:2213...
|
||||
18:29:06.971: GSConnThread: sent InitLS
|
||||
18:29:06.971: GSConnThread: opcode 00
|
||||
18:29:06.971: GS: new BF key rcvd (len 40)
|
||||
18:29:06.971: GSConnThread: opcode 01
|
||||
18:29:06.971: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:06.987: Accepted gameserver 127.0.0.1:2214...
|
||||
18:29:07.003: GSConnThread: sent InitLS
|
||||
18:29:07.003: GSConnThread: opcode 00
|
||||
18:29:07.003: GS: new BF key rcvd (len 40)
|
||||
18:29:07.018: GSConnThread: opcode 01
|
||||
18:29:07.018: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:07.034: Accepted gameserver 127.0.0.1:2216...
|
||||
18:29:07.034: GSConnThread: sent InitLS
|
||||
18:29:07.034: GSConnThread: opcode 00
|
||||
18:29:07.034: GS: new BF key rcvd (len 40)
|
||||
18:29:07.034: GSConnThread: opcode 01
|
||||
18:29:07.034: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:07.065: Accepted gameserver 127.0.0.1:2217...
|
||||
18:29:07.065: GSConnThread: sent InitLS
|
||||
18:29:07.065: GSConnThread: opcode 00
|
||||
18:29:07.065: GS: new BF key rcvd (len 40)
|
||||
18:29:07.065: GSConnThread: opcode 01
|
||||
18:29:07.065: Auth request for GS #1 (204b45936c923316c6a5a8837267278f)
|
||||
18:29:25.846: Stopping login server...
|
||||
18:29:26.049: LoginServer MainThread stopped.
|
||||
18:29:26.049: LoginServer cleanup complete.
|
||||
18:29:26.049: Login server stopping.
|
||||
18:30:04.503: Login server stopped.
|
Reference in New Issue
Block a user