Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-01-14 09:51:16 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-01-14 09:51:16 +0400
commit9d3dc50cea3e944e81aa7de5b4a7c09afd929971 (patch)
tree19419c21d84c89426e8120a86459f2a241646e6f /core/src/main/java/org/bouncycastle/crypto/tls
parent7f9ee42f308cf9b4c82eb40677446b5bb77d4042 (diff)
Formatting
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/DTLSReliableHandshake.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/DTLSReliableHandshake.java b/core/src/main/java/org/bouncycastle/crypto/tls/DTLSReliableHandshake.java
index 84ccfcb9..50a5eeac 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/DTLSReliableHandshake.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/DTLSReliableHandshake.java
@@ -107,7 +107,7 @@ class DTLSReliableHandshake
// TODO Check the conditions under which we should reset this
int readTimeoutMillis = 1000;
- for (; ; )
+ for (;;)
{
int receiveLimit = recordLayer.getReceiveLimit();
if (buf == null || buf.length < receiveLimit)
@@ -160,13 +160,11 @@ class DTLSReliableHandshake
.valueOf(seq));
if (reassembler != null)
{
-
reassembler.contributeFragment(msg_type, length, buf, 12, fragment_offset,
fragment_length);
if (checkAll(previousInboundFlight))
{
-
resendOutboundFlight();
/*
@@ -182,7 +180,6 @@ class DTLSReliableHandshake
}
else
{
-
DTLSReassembler reassembler = (DTLSReassembler)currentInboundFlight.get(Integers.valueOf(seq));
if (reassembler == null)
{