diff options
author | jsing <> | 2019-01-17 06:32:12 +0000 |
---|---|---|
committer | jsing <> | 2019-01-17 06:32:12 +0000 |
commit | 338694cf0d2ff38a00bab7103081ffa3db2cbeca (patch) | |
tree | aaa2cc958ec6b223edb11b9ce2f0c7cfe55040f0 /src/lib/libssl/Makefile | |
parent | cc9200b6a36a087c17fb0668d7adccb6a6261dd5 (diff) | |
download | openbsd-338694cf0d2ff38a00bab7103081ffa3db2cbeca.tar.gz openbsd-338694cf0d2ff38a00bab7103081ffa3db2cbeca.tar.bz2 openbsd-338694cf0d2ff38a00bab7103081ffa3db2cbeca.zip |
Provide an extensible buffer implementation that uses a read callback.
The read callback returns a TLS13_IO_* value on EOF, failure, want pollin
or want pollout, or a positive value indicating the number of bytes read.
This will be used by upcoming TLSv1.3 handshake message and record
processing code, both of which need the ability to read a fixed size
header, before extending the buffer to the number of bytes specified in the
header.
ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r-- | src/lib/libssl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 8923c05bd4..a1300bc979 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.44 2019/01/17 00:56:57 beck Exp $ | 1 | # $OpenBSD: Makefile,v 1.45 2019/01/17 06:32:12 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -34,7 +34,8 @@ SRCS= \ | |||
34 | ssl_asn1.c ssl_txt.c ssl_algs.c \ | 34 | ssl_asn1.c ssl_txt.c ssl_algs.c \ |
35 | bio_ssl.c ssl_err.c ssl_methods.c \ | 35 | bio_ssl.c ssl_err.c ssl_methods.c \ |
36 | ssl_packet.c ssl_tlsext.c ssl_versions.c pqueue.c ssl_init.c \ | 36 | ssl_packet.c ssl_tlsext.c ssl_versions.c pqueue.c ssl_init.c \ |
37 | tls13_handshake.c tls13_key_schedule.c tls13_tlsext.c ssl_sigalgs.c | 37 | tls13_buffer.c tls13_handshake.c tls13_key_schedule.c tls13_tlsext.c \ |
38 | ssl_sigalgs.c | ||
38 | SRCS+= s3_cbc.c | 39 | SRCS+= s3_cbc.c |
39 | SRCS+= bs_ber.c bs_cbb.c bs_cbs.c | 40 | SRCS+= bs_ber.c bs_cbb.c bs_cbs.c |
40 | 41 | ||