Topic: [SOLVED] Question about SSL session resume tomeout
Hi,
I used wolfSSL library to create a TLS server on our radio, then this server can communicate with one APP (allocated on a mobile phone ) through TLS1.2 . But, if user didn't operate APP for long time (maybe over 1 miniute), then operate APP again, the TLS communication will disconnect. Because client APP want to resume current SSL session ID, but server request full TLS 1.2 handshake process(request/send certificate..etc.) instead of sending ChangeCypher directly.
I guess maybe the disconnect is caused by session timeout? is there any default value used to set as session timeout?
And what's the difference between ssl->timeout and ssl->session->timeout ?
Thank you in advance.