aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add some missing getter functions to the lua APITeTpaAka2015-05-281-0/+27
* Add texture overridingrubenwardy2015-05-191-2/+5
* Lower log level for unexpected behaviourest312015-05-191-6/+6
* Add mod securityShadowNinja2015-05-161-19/+25
* Make early protocol auth mechanism generic, and add SRPest312015-05-111-0/+38
* Gracefully handle PacketErrorsest312015-05-081-2/+5
* Protocol 25: wstring -> string for custom access denial reasonsest312015-04-221-2/+2
* Schematics: Refactor NodeResolver and add NodeResolveMethodkwolekr2015-04-161-1/+1
* Fix a rare crash case un SendPlayerHPNer'zhul2015-04-111-1/+5
* TOCLIENT_ACTIVE_OBJECT_MESSAGES: channel must be 1 for unreliable messageLoic Blot2015-04-071-1/+1
* TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD can be unreliable, catch PacketError except...Loic Blot2015-04-051-2/+2
* Crafting speedupest312015-04-051-0/+3
* Fix players spawned at (0,0,0) in some rare cases instead of static_spawnpoin...Loic Blot2015-04-031-20/+15
* Move globals from main.cpp to more sane locationsCraig Robbins2015-04-011-1/+0
* Connection::Receive(): receive Network Packet instead of SharedBuffer<u8>.Loic Blot2015-03-311-14/+11
* Clean up and tweak build systemShadowNinja2015-03-271-1/+1
* Don't send an InventoryAction at each setInventoryModified, we only need one ...Loic Blot2015-03-241-1/+4
* Fix game minetest.conf default settingsest312015-03-181-1/+1
* Server::step throw is never catched in minetestserverLoic Blot2015-03-171-2/+10
* Fix a little regression on SendActiveObjectMessages which send all TOCLIENT_A...Loic Blot2015-03-171-3/+7
* Revert "Server::step throw is never catched. Replace it with an errorstream +...kwolekr2015-03-161-6/+3
* Server::step throw is never catched. Replace it with an errorstream + assertLoic Blot2015-03-161-3/+6
* Move TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD and TOCLIENT_ACTIVE_OBJECT_MESSAGES to...Loic Blot2015-03-161-17/+21
* SendPlayerHPOrDie everytime at client connection, damage enabled or not, this...Loic Blot2015-03-151-2/+1
* Replace NetworkPacket pointers to referencesLoic Blot2015-03-131-185/+161
* Prepare Protocol v25 init & authentication.Loic Blot2015-03-131-7/+31
* Rename some packet and handlers to <packet>_Legacy name for compat layer betw...Loic Blot2015-03-131-2/+2
* Use the new Player::isDead function when it's the caseLoic Blot2015-03-131-1/+1
* Respect game mapgen flags and save world noise paramsngosang2015-03-071-10/+3
* For usages of assert() that are meant to persist in Release builds (when NDEB...Craig Robbins2015-03-071-6/+6
* Server.cpp Use std::list instead of std::vector for playSound, fillMediaCache...Loic Blot2015-03-051-44/+40
* Server::AsyncRunStep: buffered_messages now uses std::vector instead of std::...Loic Blot2015-03-051-77/+54
* Performance improvement: Use std::list instead of std::vector for request_med...Loic Blot2015-03-051-3/+2
* Remove Queue class which uses std::list and use native std::queueLoic Blot2015-03-051-6/+8
* ClientInterface::getClientIDs doesn't need a std::list. Use a std::vector for...Loic Blot2015-03-041-59/+43
* We always know playerSAO when calling SendInventory. Using it instead of sear...Loic Blot2015-03-041-9/+9
* Send Position packet on event, don't check it at each AsyncRunStep.Loic Blot2015-03-041-26/+1
* ASyncRunStep doesn't need to lock when do setTimeOfDaySpeed.Loic Blot2015-03-041-15/+10
* Send Inventory packet on event, don't check it at each AsyncRunStep.Loic Blot2015-03-041-15/+4
* Remove unused m_wielded_item_not_sentLoic Blot2015-03-031-1/+0
* Send Breath packet on event, don't check it at each AsyncRunStepLoic Blot2015-03-031-11/+7
* Send Player HP when setHP (or a setHP caller) is called instead of looping an...Loic Blot2015-03-031-18/+8
* Fix some memory leaks on packet sending.Loic Blot2015-02-211-12/+7
* Move hex.h to util/Loic Blot2015-02-211-3/+3
* Move sha1.hpp and base64.hpp to util/Loic Blot2015-02-211-2/+2
* Fix unused (and so, broken) enable_rollback_recording. This option must be re...Loic Blot2015-02-181-7/+6
* [Patch 2/4] Network rework: packet writing, sending and cleanupsLoic Blot2015-02-161-2039/+237
* Replace getPlayer(playername) by getPlayer(peer_id) in some possible cases. o...Loic Blot2015-02-101-4/+2
* Network Layer 7 rework (Packet handling)Loic Blot2015-02-101-1237/+1365
* Give full breath after deathSmallJoker2015-02-051-0/+1