Age | Commit message (Expand) | Author | Files | Lines |
2012-06-03 | cleaned up windows header usage (added one central file to use windows / wina... | blacksirius | 1 | -2/+1 |
2012-04-29 | - Removed leftover TXT configs, follow-up to r15503. | brianluau | 1 | -0/+2 |
2012-02-19 | - reverted part of r15609 since apparently the issue is purely limited to ZC_... | lordttseven | 1 | -2/+1 |
2012-02-18 | Follow up r15609, fixed gcc warnings | shennetsind | 1 | -1/+1 |
2012-02-18 | * adjusted socket_max_client_packet to a more accurate (if guessed) value to ... | lordttseven | 1 | -1/+2 |
2012-02-13 | Socket init now gives meaningful error description if failed to set socket li... | gepard1984 | 1 | -7/+3 |
2012-01-25 | Added user-friendly socket error messages (bugreport:117). | gepard1984 | 1 | -10/+28 |
2012-01-15 | Fixed gm_all_skill, bugreport:5239 | shennetsind | 1 | -12/+13 |
2012-01-09 | Sending to a broken socket will no longer cause SIGPIPE signal to be sent bac... | gepard1984 | 1 | -1/+5 |
2011-11-17 | * Added a check to WFIFOSET to detect zero-length 'sets' of packets, that cou... | ai4rei | 1 | -0/+8 |
2011-10-16 | * Added a message indicating how many concurrent connections the server was c... | ai4rei | 1 | -0/+4 |
2011-10-07 | * Remove fds from the shortlist before processing. | flaviojs | 1 | -14/+16 |
2011-09-05 | * Add consistency checks to the shortlist. | flaviojs | 1 | -2/+17 |
2011-07-15 | * Changed the warning message of when setrlimit fails to be more explicit. | flaviojs | 1 | -2/+9 |
2011-07-12 | * CMake: added search for math.h, added search for socket/nsl library. (teste... | flaviojs | 1 | -0/+3 |
2011-06-30 | Replaced custom type 'intptr' with standard 'intptr_t'. | ultramage | 1 | -1/+1 |
2011-06-16 | * Merges from charmerge: | flaviojs | 1 | -0/+3 |
2011-04-09 | * Fixed memory corruption when amount of players online approached FD_SETSIZE... | ai4rei | 1 | -4/+1 |
2011-04-08 | * Fixed a compile error when socket send shortlists are disabled (s->eof inst... | ai4rei | 1 | -1/+1 |
2011-01-31 | * Various accumulated cleanups and fixes. | ai4rei | 1 | -6/+6 |
2011-01-31 | * Fixed faulty WFIFO reallocation causing memory exhaustion (bugreport:4737, ... | ai4rei | 1 | -3/+3 |
2011-01-28 | * Resolving allow/deny IP rules not working (bugreport:2632). | ai4rei | 1 | -3/+2 |
2010-12-02 | * Added an error message when a client connection exceeds the socket write bu... | ai4rei | 1 | -0/+1 |
2010-11-25 | * Too large client packets, which would otherwise cause the client to crash, ... | ai4rei | 1 | -0/+12 |
2009-02-20 | * Modified WFIFOSET to trigger a fatal error when trying to send a packet tha... | FlavioJS | 1 | -1/+9 |
2009-01-21 | * Added a limit of 1MB of pending data in the write fifo for non-server socke... | FlavioJS | 1 | -1/+11 |
2008-06-16 | * Made the socket limit not be set in cygwin, which has bogus behavior. (bugr... | FlavioJS | 1 | -2/+9 |
2008-06-09 | * Added experimental code to set the socket limit at runtime. | FlavioJS | 1 | -0/+21 |
2008-04-21 | * Changed the data field of timers from int to intptr. | FlavioJS | 1 | -1/+1 |
2008-02-27 | Altered socket code to do a graceful connection shutdown when exiting. | ultramage | 1 | -3/+2 |
2008-02-22 | * Removed code in socket.c that tries to avoid send buffer overloading, as th... | ultramage | 1 | -12/+0 |
2008-02-19 | * Forgotten update to the definition of script command 'input'. | FlavioJS | 1 | -0/+1 |
2008-02-17 | Reverting r12212. As expected, Linux is incompatible. | ultramage | 1 | -0/+6 |
2008-02-17 | Made unix interface enumeration work with dynamic sockaddr lengths (BSD, for ... | ultramage | 1 | -4/+0 |
2008-02-03 | Added a missing client update when the mute status is manually cancelled by a GM | ultramage | 1 | -1/+1 |
2008-01-29 | - Cleaned socket.c to use flag.server when detecting inter-server connections. | skotlex | 1 | -14/+5 |
2008-01-06 | Modified showmsg code to not attach a timestamp to MSG_NONE-type messages, ge... | ultramage | 1 | -6/+6 |
2007-12-27 | * Tweeked the declaration and initialization defines for vectors. | FlavioJS | 1 | -2/+4 |
2007-12-17 | * Added flag.server to indicate interserver sockets | ultramage | 1 | -11/+11 |
2007-12-13 | * Abstracted the windows socket code so that all fd's are in the range [1,FD_... | FlavioJS | 1 | -92/+244 |
2007-12-10 | - The interserver outgoing buffer now gets flushed when it reaches 512KB of d... | skotlex | 1 | -1/+6 |
2007-11-09 | Fixed socket.c using time() incorrectly, causing stall timer desynchronizatio... | ultramage | 1 | -3/+3 |
2007-10-31 | * Added names to the SC_ and SI_ enums, now they can be used to properly indi... | ultramage | 1 | -3/+3 |
2007-10-24 | * Cleaned up some messy guild code (more to come) | ultramage | 1 | -1/+1 |
2007-10-21 | Fixed a small mistake in r11503 causing a fatal error&exit on unix when you t... | ultramage | 1 | -4/+4 |
2007-10-18 | * Removed commented-out code for check_fake_id() | ultramage | 1 | -2/+0 |
2007-10-17 | * Merged do_sendrecv() and do_parse() into do_sockets() | ultramage | 1 | -108/+85 |
2007-10-17 | Using predefined constants as parameters to the exit() function. | ultramage | 1 | -6/+6 |
2007-09-20 | * Merged the tmpsql branch: | FlavioJS | 1 | -6/+7 |
2007-07-25 | * Added support for character rename packet (only dummy code for now) | ultramage | 1 | -2/+2 |