diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-09 21:44:29 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-09 21:44:29 +0000 |
commit | b397f7c6615f68f044100168eeaf157f6c60227c (patch) | |
tree | 5842a6059f35ec329fedc8970e4151ace6f3ec71 /src/map/atcommand.c | |
parent | 5b05a6ab3e2831fcf3a4fc68f746dc29edff6339 (diff) | |
download | hercules-b397f7c6615f68f044100168eeaf157f6c60227c.tar.gz hercules-b397f7c6615f68f044100168eeaf157f6c60227c.tar.bz2 hercules-b397f7c6615f68f044100168eeaf157f6c60227c.tar.xz hercules-b397f7c6615f68f044100168eeaf157f6c60227c.zip |
* Re-worked the login-char-map packet spam mechanism
- mapserver no longer sends entire user list to charserver every 10 seconds; similar change done to the char-login connection
- user count updates are only sent when the value actually changes instead of servers polling each other every few seconds
- the servers now prevent interserver connection timeout explicitly by sending ping/ack packet pairs instead of relying on the usercount polling to do so; keepalive is sent every 'stall_time'-2 seconds
- removed the @refreshonline command as refresh happens automatically every 5 seconds
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11703 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 7a590c2d2..32a07e132 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6818,32 +6818,19 @@ int atcommand_misceffect(const int fd, struct map_session_data* sd, const char* return 0; } -#ifndef TXT_ONLY /* Begin SQL-Only commands */ - /*========================================== * MAIL SYSTEM *------------------------------------------*/ int atcommand_mail(const int fd, struct map_session_data* sd, const char* command, const char* message) { nullpo_retr(0,sd); - +#ifndef TXT_ONLY mail_openmail(sd); +#endif return 0; } /*========================================== - * Refresh online command for SQL [Valaris] - * Will refresh and check online column of players and set correctly. - *------------------------------------------*/ -int atcommand_refreshonline(const int fd, struct map_session_data* sd, const char* command, const char* message) -{ - send_users_tochar(-1, gettick(), 0, 0); - return 0; -} - -#endif /* end sql only */ - -/*========================================== * Show Monster DB Info v 1.0 * originally by [Lupus] eAthena *------------------------------------------*/ @@ -8394,10 +8381,7 @@ AtCommandInfo atcommand_info[] = { { "homshuffle", 60, atcommand_homshuffle }, { "showmobs", 10, atcommand_showmobs }, { "feelreset", 10, atcommand_feelreset }, -#ifndef TXT_ONLY { "mail", 1, atcommand_mail }, - { "refreshonline", 99, atcommand_refreshonline }, -#endif }; |