Skip to content

Commit

Permalink
port-msc: some bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasdr committed Sep 21, 2023
1 parent f92fd48 commit f71479a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tdme/network/udpclient/UDPClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class tdme::network::udpclient::UDPClient final: public Thread {
string clientKey;

const static int MESSAGEACK_RESENDTIMES_TRIES = 7;
const static uint64_t MESSAGEACK_RESENDTIMES[MESSAGEACK_RESENDTIMES_TRIES];
STATIC_DLL_IMPEXT const static uint64_t MESSAGEACK_RESENDTIMES[MESSAGEACK_RESENDTIMES_TRIES];
const static int MESSAGEQUEUE_SEND_BATCH_SIZE = 100;
const static uint64_t MESSAGEACK_KEEPTIME = 5000L;
struct Message {
Expand Down
2 changes: 1 addition & 1 deletion src/tdme/network/udpserver/UDPServerIOThread.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class tdme::network::udpserver::UDPServerIOThread final: private Thread {

private:
const static int MESSAGEACK_RESENDTIMES_TRIES = 7;
const static uint64_t MESSAGEACK_RESENDTIMES[MESSAGEACK_RESENDTIMES_TRIES];
STATIC_DLL_IMPEXT const static uint64_t MESSAGEACK_RESENDTIMES[MESSAGEACK_RESENDTIMES_TRIES];
const static int MESSAGEQUEUE_SEND_BATCH_SIZE = 100;
const static uint64_t MESSAGEACK_KEEPTIME = 5000L;
struct Message {
Expand Down

0 comments on commit f71479a

Please sign in to comment.