aboutsummaryrefslogtreecommitdiff
path: root/ssl/d1_lib.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-01-22 14:54:01 -0500
committerRich Salz <rsalz@openssl.org>2016-01-24 18:25:04 -0500
commitcf2cede4a75f5e269f791bf1dcc029bba8c1f689 (patch)
tree093d88fcb4a288e899114adf1ecd2e208ac94758 /ssl/d1_lib.c
parent68ed0b2480023424f280e98cda7199d913f3d7cc (diff)
downloadopenssl-cf2cede4a75f5e269f791bf1dcc029bba8c1f689.zip
openssl-cf2cede4a75f5e269f791bf1dcc029bba8c1f689.tar.gz
openssl-cf2cede4a75f5e269f791bf1dcc029bba8c1f689.tar.bz2
Move pqueue into ssl
This is an internal facility, never documented, not for public consumption. Move it into ssl (where it's only used for DTLS). I also made the typedef's for pqueue and pitem follow our style: they name structures, not pointers. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/d1_lib.c')
-rw-r--r--ssl/d1_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c
index aaa9803..88822c0 100644
--- a/ssl/d1_lib.c
+++ b/ssl/d1_lib.c
@@ -201,8 +201,8 @@ void dtls1_free(SSL *s)
void dtls1_clear(SSL *s)
{
- pqueue buffered_messages;
- pqueue sent_messages;
+ pqueue *buffered_messages;
+ pqueue *sent_messages;
unsigned int mtu;
unsigned int link_mtu;