diff options
author | shinomori <shinomori@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-03 15:53:04 +0000 |
---|---|---|
committer | shinomori <shinomori@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-03 15:53:04 +0000 |
commit | 74362c7e51463fdc5008ea0ba9ebfb56b2e0994a (patch) | |
tree | 0027e5d34aa90fcf04a7a77111f2be4cc8ef4a18 /src/map/map.c | |
parent | 922830421a2ac8c3ffa21fa64479801207a0bde0 (diff) | |
download | hercules-74362c7e51463fdc5008ea0ba9ebfb56b2e0994a.tar.gz hercules-74362c7e51463fdc5008ea0ba9ebfb56b2e0994a.tar.bz2 hercules-74362c7e51463fdc5008ea0ba9ebfb56b2e0994a.tar.xz hercules-74362c7e51463fdc5008ea0ba9ebfb56b2e0994a.zip |
integrating anti freeze system to server status update, should cure dropping server connections [Shinomori]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1389 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c index 7dd073f4b..902306ce8 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -180,8 +180,12 @@ int console = 0; * (char鯖から送られてくる) *------------------------------------------ */ -void map_setusers(int n) { - users = n; +void map_setusers(int fd) +{ + users = RFIFOL(fd,2); + // send some anser + WFIFOW(fd,0) = 0x2718; + WFIFOSET(fd,2); } /*========================================== |