llpacketack.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpacketack.h
  3.  * @brief Reliable UDP helpers for the message system.
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLPACKETACK_H
  33. #define LL_LLPACKETACK_H
  34. #include "llhost.h"
  35. class LLReliablePacketParams
  36. {
  37. public:
  38. LLHost mHost;
  39. S32 mRetries;
  40. BOOL mPingBasedRetry;
  41. F32 mTimeout;
  42. void (*mCallback)(void **,S32);
  43. void** mCallbackData;
  44. char* mMessageName;
  45. public:
  46. LLReliablePacketParams()
  47. {
  48. clear();
  49. };
  50. ~LLReliablePacketParams() { };
  51. void clear()
  52. {
  53. mHost.invalidate();
  54. mRetries = 0;
  55. mPingBasedRetry = TRUE;
  56. mTimeout = 0.f;
  57. mCallback = NULL;
  58. mCallbackData = NULL;
  59. mMessageName = NULL;
  60. };
  61. void set(
  62. const LLHost& host,
  63. S32 retries,
  64. BOOL ping_based_retry,
  65. F32 timeout, 
  66. void (*callback)(void**,S32),
  67. void** callback_data, char* name)
  68. {
  69. mHost = host;
  70. mRetries = retries;
  71. mPingBasedRetry = ping_based_retry;
  72. mTimeout = timeout;
  73. mCallback = callback;
  74. mCallbackData = callback_data;
  75. mMessageName = name;
  76. };
  77. };
  78. class LLReliablePacket
  79. {
  80. public:
  81. LLReliablePacket(
  82. S32 socket,
  83. U8* buf_ptr,
  84. S32 buf_len,
  85. LLReliablePacketParams* params);
  86. ~LLReliablePacket()
  87. mCallback = NULL;
  88. delete [] mBuffer;
  89. mBuffer = NULL;
  90. };
  91. friend class LLCircuitData;
  92. protected:
  93. S32 mSocket;
  94. LLHost mHost;
  95. S32 mRetries;
  96. BOOL mPingBasedRetry;
  97. F32 mTimeout;
  98. void (*mCallback)(void**,S32);
  99. void** mCallbackData;
  100. char* mMessageName;
  101. U8* mBuffer;
  102. S32 mBufferLength;
  103. TPACKETID mPacketID;
  104. F64 mExpirationTime;
  105. };
  106. #endif