summaryrefslogtreecommitdiffstats
path: root/ssl/record/record_locl.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-10-08 15:46:51 +0100
committerMatt Caswell <matt@openssl.org>2018-10-19 14:24:40 +0100
commit2fc4c77c3f06443f4c476f6f58d83e5e108d1dce (patch)
treebbf0b600b4becd2127d6b7bfc571c47ed6e6852a /ssl/record/record_locl.h
parentedcd29efd32c51f298ad5ab438e2d4cc5411e9a9 (diff)
Use the read and write buffers in DTLSv1_listen()
Rather than using init_buf we use the record layer read and write buffers in DTLSv1_listen(). These seem more appropriate anyway and will help with the next commit. Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/7375)
Diffstat (limited to 'ssl/record/record_locl.h')
-rw-r--r--ssl/record/record_locl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/ssl/record/record_locl.h b/ssl/record/record_locl.h
index 07fd7ab640..5e8dd7f704 100644
--- a/ssl/record/record_locl.h
+++ b/ssl/record/record_locl.h
@@ -18,8 +18,6 @@
/* Functions/macros provided by the RECORD_LAYER component */
-#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_set_packet(rl, p) ((rl)->packet = (p))
#define RECORD_LAYER_reset_packet_length(rl) ((rl)->packet_length = 0)