summaryrefslogtreecommitdiffstats
path: root/ssl/d1_srvr.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-02-04 14:30:20 +0000
committerMatt Caswell <matt@openssl.org>2015-03-26 15:02:01 +0000
commitcca52a844f7e62b312f9699a1494807295858064 (patch)
tree6c0c964ce528026bae7815491b1206acfacbcd2e /ssl/d1_srvr.c
parent3bb8f87d2d9aa1ab51703a725759d440785685e3 (diff)
Remove last trace of non-record layer code reading and writing sequence
numbers directly Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/d1_srvr.c')
-rw-r--r--ssl/d1_srvr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ssl/d1_srvr.c b/ssl/d1_srvr.c
index 1a0df5b788..5ddfeac4c2 100644
--- a/ssl/d1_srvr.c
+++ b/ssl/d1_srvr.c
@@ -330,8 +330,7 @@ int dtls1_accept(SSL *s)
* listening
*/
if (listen) {
- RECORD_LAYER_set_write_sequence(&s->rlayer,
- RECORD_LAYER_get_read_sequence(&s->rlayer));
+ DTLS_RECORD_LAYER_resync_write(&s->rlayer);
}
/* If we're just listening, stop here */