Fix for how uv writes work on linux (they don't copy the buffer automatically) which should enable actually logging in on linux now

This commit is contained in:
KimLS
2016-11-02 18:45:05 -07:00
parent 90443891d6
commit 53beefd19b
5 changed files with 29 additions and 15 deletions
+1 -1
View File
@@ -445,7 +445,7 @@ int main(int argc, char** argv) {
if (!eqsf_open && Config->ZonePort != 0) {
Log.Out(Logs::General, Logs::Zone_Server, "Starting EQ Network server on port %d", Config->ZonePort);
EQ::Net::EQStreamManagerOptions opts(Config->ZonePort, false, false);
EQ::Net::EQStreamManagerOptions opts(Config->ZonePort, false, true);
eqsm.reset(new EQ::Net::EQStreamManager(opts));
eqsf_open = true;