summaryrefslogtreecommitdiffstats
path: root/ssl/record/record_locl.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-02-16 12:10:53 +0000
committerMatt Caswell <matt@openssl.org>2016-03-07 21:39:28 +0000
commitf482740f2389946b8738b963f2cf12c5a3b4d399 (patch)
tree948884e1a32bd3a27ccc3542148c8430e358d40e /ssl/record/record_locl.h
parentd3b324a1614c1fa8acaaa448eb2a101e49e86ee2 (diff)
Remove the wrec record layer field
We used to use the wrec field in the record layer for keeping track of the current record that we are writing out. As part of the pipelining changes this has been moved to stack allocated variables to do the same thing, therefore the field is no longer needed. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ssl/record/record_locl.h')
-rw-r--r--ssl/record/record_locl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/ssl/record/record_locl.h b/ssl/record/record_locl.h
index f1f5bbcbcc..81335fa946 100644
--- a/ssl/record/record_locl.h
+++ b/ssl/record/record_locl.h
@@ -121,7 +121,6 @@
#define RECORD_LAYER_get_rbuf(rl) (&(rl)->rbuf)
#define RECORD_LAYER_get_wbuf(rl) ((rl)->wbuf)
#define RECORD_LAYER_get_rrec(rl) ((rl)->rrec)
-#define RECORD_LAYER_get_wrec(rl) (&(rl)->wrec)
#define RECORD_LAYER_set_packet(rl, p) ((rl)->packet = (p))
#define RECORD_LAYER_reset_packet_length(rl) ((rl)->packet_length = 0)
#define RECORD_LAYER_get_rstate(rl) ((rl)->rstate)