diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-19 15:01:44 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-19 18:06:08 +0200 |
commit | 321f283032688f0feddc696654e86f62af07121a (patch) | |
tree | d0e75b664fa7756d70ddaa5e9796c1ee38a9d8e8 /indra/llmessage/llpacketack.h | |
parent | c2e00c0403b95ef10264807bdbfc3b1e4fdf0921 (diff) |
Replace remaining BOOL with bool llinventory and llmessage
Diffstat (limited to 'indra/llmessage/llpacketack.h')
-rw-r--r-- | indra/llmessage/llpacketack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llmessage/llpacketack.h b/indra/llmessage/llpacketack.h index f0ed923f19..76e2e43acb 100644 --- a/indra/llmessage/llpacketack.h +++ b/indra/llmessage/llpacketack.h @@ -35,7 +35,7 @@ class LLReliablePacketParams public: LLHost mHost; S32 mRetries; - BOOL mPingBasedRetry; + bool mPingBasedRetry; F32Seconds mTimeout; void (*mCallback)(void **,S32); void** mCallbackData; @@ -53,7 +53,7 @@ public: { mHost.invalidate(); mRetries = 0; - mPingBasedRetry = TRUE; + mPingBasedRetry = true; mTimeout = F32Seconds(0.f); mCallback = NULL; mCallbackData = NULL; @@ -63,7 +63,7 @@ public: void set( const LLHost& host, S32 retries, - BOOL ping_based_retry, + bool ping_based_retry, F32Seconds timeout, void (*callback)(void**,S32), void** callback_data, char* name) @@ -98,7 +98,7 @@ protected: S32 mSocket; LLHost mHost; S32 mRetries; - BOOL mPingBasedRetry; + bool mPingBasedRetry; F32Seconds mTimeout; void (*mCallback)(void**,S32); void** mCallbackData; |