Re: partial SSL_read()

2019-04-30 Thread Felipe Gasper
> On Apr 30, 2019, at 12:21 PM, Michael Wojcik > wrote: > >> From: openssl-users on behalf of Felipe >> Gasper >> Sent: Tuesday, April 30, 2019 11:06 > >> My question is, does TLS allow a client to be _able_ to parse an incomplete >> message? >> Or is it that only the entire message

Re: partial SSL_read()

2019-04-30 Thread Michael Wojcik
> From: openssl-users on behalf of Felipe > Gasper > Sent: Tuesday, April 30, 2019 11:06 > My question is, does TLS allow a client to be _able_ to parse an incomplete > message? > Or is it that only the entire message can be decoded? TLS doesn't have the concept of a "message". It has

partial SSL_read()

2019-04-30 Thread Felipe Gasper
Hello, I’ve got an OpenSSL client that’s showing the behavior in strace: read 5 bytes - OK read 11228 bytes - gets partial response read remainder - ECONNRESET That ECONNRESET causes OpenSSL to fail the entire SSL_read(). My question is, does TLS allow a client to be