diff options
author | 2017-01-23 08:48:44 +0000 | |
---|---|---|
committer | 2017-01-23 08:48:44 +0000 | |
commit | 8022bb077d13265daefb9145af99f06cb79e4d1f (patch) | |
tree | c32212b154ef1ced26fe561ba024fafe4f4a98b7 /lib/libssl/ssl.h | |
parent | copy log.c/h from bgpd. (diff) | |
download | wireguard-openbsd-8022bb077d13265daefb9145af99f06cb79e4d1f.tar.xz wireguard-openbsd-8022bb077d13265daefb9145af99f06cb79e4d1f.zip |
send state and rstate from ssl_st into internal. There are accessors
so these should not be diddled with directly
ok jsing@
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 678246b23e4..f29626dc033 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.115 2017/01/23 08:08:06 beck Exp $ */ +/* $OpenBSD: ssl.h,v 1.116 2017/01/23 08:48:44 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -846,9 +846,6 @@ struct ssl_st { #endif int server; /* are we the server side? - mostly used by SSL_clear*/ - int state; /* where we are */ - int rstate; /* where we are when reading */ - struct ssl3_state_st *s3; /* SSLv3 variables */ struct dtls1_state_st *d1; /* DTLSv1 variables */ |