diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/UnackedPacketCollection.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/UnackedPacketCollection.cs | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/UnackedPacketCollection.cs b/OpenSim/Region/ClientStack/Linden/UDP/UnackedPacketCollection.cs index 793aefe..6b1d7d2 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/UnackedPacketCollection.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/UnackedPacketCollection.cs | |||
@@ -118,12 +118,17 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
118 | /// Returns a list of all of the packets with a TickCount older than | 118 | /// Returns a list of all of the packets with a TickCount older than |
119 | /// the specified timeout | 119 | /// the specified timeout |
120 | /// </summary> | 120 | /// </summary> |
121 | /// <remarks> | ||
122 | /// This function is not thread safe, and cannot be called | ||
123 | /// multiple times concurrently | ||
124 | /// </remarks> | ||
121 | /// <param name="timeoutMS">Number of ticks (milliseconds) before a | 125 | /// <param name="timeoutMS">Number of ticks (milliseconds) before a |
122 | /// packet is considered expired</param> | 126 | /// packet is considered expired |
123 | /// <returns>A list of all expired packets according to the given | 127 | /// </param> |
124 | /// expiration timeout</returns> | 128 | /// <returns> |
125 | /// <remarks>This function is not thread safe, and cannot be called | 129 | /// A list of all expired packets according to the given |
126 | /// multiple times concurrently</remarks> | 130 | /// expiration timeout |
131 | /// </returns> | ||
127 | public List<OutgoingPacket> GetExpiredPackets(int timeoutMS) | 132 | public List<OutgoingPacket> GetExpiredPackets(int timeoutMS) |
128 | { | 133 | { |
129 | ProcessQueues(); | 134 | ProcessQueues(); |
@@ -216,4 +221,4 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
216 | } | 221 | } |
217 | } | 222 | } |
218 | } | 223 | } |
219 | } | 224 | } \ No newline at end of file |