[root]/server/branches/1.x/socket
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 84 (100.0%) | 1056 (100.0%) | 12.5 |
mwedel | 29 (34.5%) | 511 (48.4%) | 17.6 |
akirschbaum | 30 (35.7%) | 275 (26.0%) | 9.1 |
ryo_saeba | 15 (17.9%) | 270 (25.6%) | 18.0 |
lalo | 10 (11.9%) | 0 (0.0%) | 0.0 |
preparing for 1.12 release
0 lines of code changed in 10 files:
Send correct response for "setup inscribe" settings.
1 lines of code changed in 1 file:
Properly check "setup bot" settings.
12 lines of code changed in 1 file:
Properly check "setup tick" settings.
12 lines of code changed in 1 file:
Properly check "setup extendedMapInfos" settings.
12 lines of code changed in 1 file:
Properly check "setup extendedTextInfos" settings.
11 lines of code changed in 1 file:
Properly check "setup mapsize" settings; remove stray space character from error response.
9 lines of code changed in 1 file:
Properly check "setup facecache" settings.
12 lines of code changed in 1 file:
Properly check "setup newmapcmd" settings.
12 lines of code changed in 1 file:
Properly check "setup map2cmd" settings.
9 lines of code changed in 1 file:
Properly check "setup darkness" settings.
13 lines of code changed in 1 file:
Properly check "setup spellmon" settings.
12 lines of code changed in 1 file:
Properly check "setup sound" settings; document allowed values.
1 lines of code changed in 1 file:
Accelerate processing of setup protocol command.
1 lines of code changed in 1 file:
Properly check input read from client socket.
3 lines of code changed in 1 file:
Remove trailing whitespace.
116 lines of code changed in 8 files:
Fix for bug #2081472: short int encoding for food value in payment altars.
75 lines of code changed in 1 file:
Add new setup option "num_look_objects".
26 lines of code changed in 3 files:
Fix protocol issues regarding face caching.
7 lines of code changed in 1 file:
Handle invalid file descriptors more gracefully.
22 lines of code changed in 2 files:
Fix typos.
1 lines of code changed in 1 file:
Fix problems with player updating client with spell handling - should all
work now.
--
server/login.c: Move esvr_add_spells() and fix_object() to after
esvr_new_player() - when client gets new player protocol from server,
it purges all info it has, including spell data.
server/player.c: Remove the line that clears the monitor_spells in the
socket structure. With the clear there, if you play a new character on
the same server (savebed, a to play again), this second character
doesn't get any spells.
socket/request.c: Check to see if pl->spell_state is non null in
esrv_update_spells() - in this way, server doesn't try to update
spells on client before the first add_player_spells() is called.
--
MSW 2007-09-16
10 lines of code changed in 1 file:
Server support for Metaserver2 - brought back from trunk:
acinclude.m4: Add LIBCURL_CHECK_CONFIG macro, used by configure.
configure.ac: Add check for pthread, LIBCURL. Extra
logic to display if we will build with metaserver2 support
lib/Makefile.am: add metaserver2 to list of files to install.
*/Makefile.in: rebuilt
lib/metaserver2: Settings file for metaserver2 support.
server/init.c: Add call to metaserver2_init() during startup.
include/metaserver2.h: Header file include metaserver2 related data.
include/autoconf.h.in: Rebuilt
include/sockproto.h: Rebuilt with new metaserver2 functions.
socket/metaserver.c: metaserver2 update logic added.
MSW 2007-08-31
445 lines of code changed in 2 files:
Try to factor esrv_del_item and esrv_send_item into remove_ob() and insert_ob_in_ob(). Fix calls to esrv_send_item that are really esrv_update_item(). Merge from trunk.
2 lines of code changed in 1 file:
Add new NDI_ALL_DMS to send a message to all connected DMs. Used in case of errors.
14 lines of code changed in 1 file:
Fix unitialized variable.
1 lines of code changed in 1 file:
server/player.c: No need to copy faces_sent - just use the data already
there, and set ns->faces_sent to NULL so we know there is no data there.
socket/init.c: Allocate ns->faces_sent if not there.
MSW 2007-04-25
6 lines of code changed in 1 file:
socket/init.c: Change free calls with FREE_AND_CLEAR - were getting double
frees - since pointer wasn't reset, was no way for program to know not
to have the data cleared again.
MSW 2007-04-24
7 lines of code changed in 1 file:
Remove unused variables.
0 lines of code changed in 1 file:
Implement feature request #1560389: improve inscription logic.
62 lines of code changed in 3 files:
Add background music support to maps, change 'socket.sound' field signification.
33 lines of code changed in 2 files:
server/server.c: Add some debug to see if objects are on swapped out
maps in process_objects()
socket/loop.c: Hopeful fix for old bug - can be rare cases where
next player gets freed, so code tries to process garbage player
and crashes.
MSW 2007-04-21
13 lines of code changed in 1 file:
Bring forward fix from 1.10.0:
Fix 'make distclean':
acinclude.m4: Use -I./${srcdir} for crossedit check - otherwise, when
building in alternate directory, doesn't fine files correctly.
configure.*: Add new makefiles.
check-fragment.am, test/unit/crossedit/Makefile.am,
test/unit/common/Makefile.am,test/toolkit/Makefile.am: Add support for buildin
g in alternate directory, which
make distclean does - using relative directories to find files
does not work. Some files should also be in the buildir, not srcdir.
Have Makefiels remove .autrun.xml with distclean
Makefile.am: Remove to config files on make distclean
test/include/Makefile.*, test/templates/Makefile.*: Add missing Makefiles
test/unit/random_maps/Makefile.am,test/unit/socket/Makefile.am,
test/unit/Makefile.am: remove .autorun.xml file as part of distclean
test/unit/server/Makefile.am: Remove LDFLAGS from Makefile.am - automake
says don't mess with those - use AM_LDFLAGS instead. Remove
.autrun.xml file with distclean
test/Makefile.am: Add include, templates to subdir list. Have
make clean remove log files, .autorun.xml file.
crossedit/Makefile.am: Fix indentation of stubs.c (use tab, not spaces)
other files: Rebuilt as part of running autogen.sh
MSW 2007-03-25
4 lines of code changed in 2 files:
Win32 compilation fixes.
2 lines of code changed in 1 file:
Check len of client-sent commands.
33 lines of code changed in 1 file:
Fix method not checking correct format - never assume client plays nice :)
4 lines of code changed in 1 file:
Fix for bug #1569017: Healing gives grace cost to target.
22 lines of code changed in 1 file:
Fix LOG() messages: add trailing "\n"; use "%s" format for variable strings.
5 lines of code changed in 2 files:
doc/Developers/protocol: Add documentation about exp_table requestinfo
addition
socket/loop.c: Add call to send_exp_table() in request_info_cmd()
socket/request.c: Add send_exp_table() to use a replyinfo exp_table to
send data to client.
MSW 2006-11-03
25 lines of code changed in 2 files:
socket/loop.c: Fix replyinfo, in that it was using incorrect length parameter
when replying to unsupported requests.
MSW 2006-11-02
1 lines of code changed in 1 file:
(1 more)