gameServer2/src/server/mod.rs
author nemo
Fri, 13 Apr 2018 13:03:51 -0400
changeset 13327 b77a9380dd0f
parent 13124 1e39b8749072
permissions -rw-r--r--
QT for some reason messes with XCompose causing broken input (Qt 5 only - Qt 4 did not break anything). In Qt 5.2 and 5.3 this was causing an invalid conversion in chat messages containing these resulting in the bad bytes being stripped. In Qt 5.9 it is still broken, but you at least get a string with something in it. This checks for non-zero converted strings for room creation and chat lines.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12133
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     1
pub mod server;
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     2
pub mod client;
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12148
diff changeset
     3
pub mod room;
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12148
diff changeset
     4
pub mod network;
12135
6273f89ab13d Start on messages parser
unc0rr
parents: 12133
diff changeset
     5
pub mod coretypes;
12143
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12135
diff changeset
     6
mod actions;
12148
7e874846afe3 Toss code around
unc0rr
parents: 12143
diff changeset
     7
mod handlers;