rubidium
|
a4c6d07edc
|
(svn r20553) -Feature: allow rate limiting of incoming commands
|
2010-08-19 08:59:36 +00:00 |
|
rubidium
|
b594990071
|
(svn r20549) -Codechange: centralise the handling of the incoming commands (from clients and the server)
|
2010-08-18 22:40:17 +00:00 |
|
rubidium
|
e8e22c99fd
|
(svn r20548) -Codechange: rename some variables giving them slightly more meaningful names
|
2010-08-18 21:30:38 +00:00 |
|
rubidium
|
69fa0b36d3
|
(svn r20542) -Codechange: generalise the setting of "p2" to the ClientID.
|
2010-08-18 17:06:45 +00:00 |
|
rubidium
|
1c3d42598e
|
(svn r20510) -Codechange: unify packet queue handling and make insertion O(1) instead of O(n)
|
2010-08-15 23:44:45 +00:00 |
|
alberth
|
ee01ec9136
|
(svn r20291) -Codechange: Unify break coding style.
|
2010-08-01 21:19:49 +00:00 |
|
frosch
|
4bd32799f1
|
(svn r20286) -Codechange: Unify end of doxygen comments.
|
2010-08-01 19:44:49 +00:00 |
|
frosch
|
ed4f806f1d
|
(svn r20283) -Codechange: Unify start of doygen comments.
|
2010-08-01 19:22:34 +00:00 |
|
terkhen
|
88ca183191
|
(svn r20239) -Doc: Give a common name to all fall throughs (FALL THROUGH).
|
2010-07-29 14:26:28 +00:00 |
|
alberth
|
be6c058424
|
(svn r20211) -Codechange: Indented code should have curly braces around it.
|
2010-07-24 10:14:39 +00:00 |
|
rubidium
|
99a11badaf
|
(svn r19996) -Codechange: Add NetworkVehicleType enum.
|
2010-06-19 16:37:56 +00:00 |
|
smatz
|
80fd67a314
|
(svn r19818) -Fix [FS#3784](r16004): kicking clients by IP didn't work
|
2010-05-13 16:00:50 +00:00 |
|
rubidium
|
2555522eab
|
(svn r19809) -Codechange: make some unnamed network related enums/defines static const variables
|
2010-05-13 09:04:41 +00:00 |
|
rubidium
|
6fa962b867
|
(svn r19808) -Codechange: NetworkCalculateLag returned an uint, so keep it that way
|
2010-05-13 08:59:50 +00:00 |
|
rubidium
|
26af87bbaa
|
(svn r19695) -Fix: leaking a file descriptor
|
2010-04-22 18:34:45 +00:00 |
|
smatz
|
f48f4c8293
|
(svn r19693) -Codechange: split STATUS_INACTIVE to two states
|
2010-04-22 17:26:57 +00:00 |
|
rubidium
|
df4d8b3bc9
|
(svn r19678) -Fix (r19607): client status was shown incorrect in the console
|
2010-04-19 19:50:56 +00:00 |
|
smatz
|
cd20724d20
|
(svn r19651) -Fix [FS#3745]: when a company is sold, move connected clients to spectators
|
2010-04-17 11:39:46 +00:00 |
|
rubidium
|
088282bcf8
|
(svn r19620) -Fix: desync when a command is received and in the queue while a client starts joining, i.e. save the game state. This can happen in two ways: with frame_freq > 1 a command received in a previous frame might not be executed yet or when a command is received in the same frame as the join but before the savegame is made. In both cases the joining client would not get all commands to get in-sync with the server (and the other clients).
|
2010-04-13 18:55:31 +00:00 |
|
smatz
|
24a60b77ec
|
(svn r19613) -Fix [FS#3755]: possible invalid read when server moves client to spectators before he finishes joining
|
2010-04-11 22:06:17 +00:00 |
|
smatz
|
7f3844d3aa
|
(svn r19610) -Codechange: rename STATUS_AUTH to STATUS_AUTHORIZED
|
2010-04-11 17:32:14 +00:00 |
|
smatz
|
13e5058efe
|
(svn r19608) -Fix: do not kick client if he entered password and the password was cleared meanwhile
|
2010-04-11 17:23:11 +00:00 |
|
smatz
|
11d6e21c3a
|
(svn r19607) -Codechange: use different packet types instead of packet subtypes
|
2010-04-11 17:17:12 +00:00 |
|
rubidium
|
d8baa1342c
|
(svn r19589) -Change: add some more useful information to the desync log and unify the formatting
|
2010-04-08 21:14:49 +00:00 |
|
yexo
|
a9c8dbc0a0
|
(svn r19255) -Codechange: encapsulate GRFIdentifier in GRFConfig instead of subclassing it
|
2010-02-25 20:05:31 +00:00 |
|
rubidium
|
ab35d95b5a
|
(svn r19072) -Fix [FS#3599]: possible read/write after free when the client triggered the server to close the connection
|
2010-02-09 23:49:19 +00:00 |
|
rubidium
|
f608ad7baf
|
(svn r18875) -Codechange: remove some unneeded bits from the network protocol and improve the naming of some variables
|
2010-01-21 11:17:40 +00:00 |
|
rubidium
|
82fc28f77f
|
(svn r18809) -Codechange/Cleanup: remove unneeded headers from some files, if a header require a header make it include that header
|
2010-01-15 16:41:15 +00:00 |
|
rubidium
|
4ecb3eb33c
|
(svn r18804) -Codechange: guard against binaries claiming to be compatible with a future (stable) release of OpenTTD.
|
2010-01-14 23:06:41 +00:00 |
|
rubidium
|
6a047d2316
|
(svn r18782) -Codechange: move the content of callback_table.cpp to network_command.cpp; it's only ever used there.
|
2010-01-11 20:00:14 +00:00 |
|
frosch
|
59f9163e37
|
(svn r18381) -Codechange: Add RoadVehicle::IsBus() to simplify some stuff.
|
2009-12-02 17:37:02 +00:00 |
|
rubidium
|
b00a5f1069
|
(svn r18330) -Cleanup: remove some unneeded includes
|
2009-11-28 20:35:25 +00:00 |
|
rubidium
|
b0f18a27fb
|
(svn r18054) -Change/Fix [FS#3310]: make pause on join pause during the whole joining (including download) phase
|
2009-11-12 20:52:14 +00:00 |
|
rubidium
|
2a1cab4d46
|
(svn r18052) -Codechange/Fix: make the 'pause' chat message when actually executing the pause command. This to prevent showing paused and especially unpaused to be shown when the state doesn't change. Output now mentions whether pause changes keep the game paused and what reasons for pausing there 'currently' are.
|
2009-11-12 20:33:30 +00:00 |
|
frosch
|
b012a75c47
|
(svn r17977) -Fix: Busses and trucks are distinguished by cargo class.
|
2009-11-05 20:26:13 +00:00 |
|
smatz
|
eb72a0095f
|
(svn r17746) -Codechange: 'operator new' doesn't return NULL, NetworkSend_Init() is useless
|
2009-10-09 11:03:00 +00:00 |
|
rubidium
|
59ec3dc267
|
(svn r17743) -Fix: (post 0.7) memory leak in server in case handling a packet caused the connection to be closed. Also force-close the connection on invalid packets.
|
2009-10-07 21:11:56 +00:00 |
|
rubidium
|
df75db67eb
|
(svn r17742) -Codechange: remove unused variable from Recv_Packet
|
2009-10-07 20:58:14 +00:00 |
|
rubidium
|
d6cded5380
|
(svn r17693) -Cleanup: remove some unneeded includes
|
2009-10-04 17:16:41 +00:00 |
|
rubidium
|
7d24e84a81
|
(svn r17617) -Codechange: make the server side packet handling be more like the client side's handling, i.e. return the connection status
-Fix: do not do invalid reads when a packet handling function closed a connection
|
2009-09-22 20:44:14 +00:00 |
|
frosch
|
ebd916be3d
|
(svn r17532) -Codechange: Rename several Invalidate functions to SetDirty for more consistency and distinguishability.
|
2009-09-13 19:15:59 +00:00 |
|
rubidium
|
bd9670ea47
|
(svn r17467) -Change: show the client id in join messages at the server (patch by dihedral)
|
2009-09-07 21:28:16 +00:00 |
|
rubidium
|
7fbc33dae1
|
(svn r17248) -Fix: add GPL license notice where appropriate
|
2009-08-21 20:21:05 +00:00 |
|
rubidium
|
1fe3ad3288
|
(svn r17075) -Codechange: rename ~750 strings to be more uniform with their relatives
|
2009-08-05 17:59:21 +00:00 |
|
smatz
|
22cf8d8480
|
(svn r16634) -Codechange: use Company::IsHumanID() instead of IsHumanCompany()
|
2009-06-23 12:11:35 +00:00 |
|
rubidium
|
9b156c1bd4
|
(svn r16601) -Fix [FS#2880]: try 2... hopefully better this time
|
2009-06-19 20:26:18 +00:00 |
|
rubidium
|
a497e3ff4a
|
(svn r16592) -Fix [FS#2880]: 'connection lost' was also shown when the client was 'leaving'.
|
2009-06-18 15:05:45 +00:00 |
|
smatz
|
bea3fe2b8b
|
(svn r16559) -Codechange: introduce Company::IsValidAiID() and Company::IsValidHumanID(), don't use IsHumanCompany() where possible
|
2009-06-10 22:05:01 +00:00 |
|
alberth
|
bab70a823d
|
(svn r16491) -Codechange: Added parentheses around bitwise operators for code style.
|
2009-06-01 11:43:36 +00:00 |
|
rubidium
|
bacbafe510
|
(svn r16437) -Codechange: remove the hack that for CMD_COMPANY_CTRL the company was changed from spectator to company 0 in the network code.
|
2009-05-26 21:25:24 +00:00 |
|