CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2021/10/04 23:33:46
Modified files:
usr.sbin/rpki-client: http.c
Log message:
The HTTP chunked transfer encoding test in regress/usr.sbin/rpki-client/libressl
often fails. It happens when the HTTP parser reads more than one chunk in a
single tls_read() invocation causing the state machine to think it needs to read
more data while buffer already contains unexamined data. Considering a non-empty
buffer before tls_read() fixes the problem.
ok benno@ claudio@