Reduced initial daybreak ping, some work on what needs to be done to support the first major patch (very little), CMakeLists.txt changes

This commit is contained in:
KimLS
2016-09-11 18:35:37 -07:00
parent 8a73f50601
commit b50c85d086
9 changed files with 5041 additions and 138 deletions
+2 -2
View File
@@ -250,7 +250,7 @@ EQ::Net::DaybreakConnection::DaybreakConnection(DaybreakConnectionManager *owner
m_hold_time = Clock::now();
m_buffered_packets_length = 0;
m_resend_delay = m_owner->m_options.resend_delay_ms;
m_rolling_ping = 1000;
m_rolling_ping = 100;
}
//new connection made as client
@@ -269,7 +269,7 @@ EQ::Net::DaybreakConnection::DaybreakConnection(DaybreakConnectionManager *owner
m_hold_time = Clock::now();
m_buffered_packets_length = 0;
m_resend_delay = m_owner->m_options.resend_delay_ms;
m_rolling_ping = 1000;
m_rolling_ping = 100;
}
EQ::Net::DaybreakConnection::~DaybreakConnection()