OpenSSL DTLS Server - how to split each handshake message into separate packet

292 Views Asked by At

I am writing one DTLS server using OpenSSL. I noticed that my server is combining multiple handshake messages into a single packet. Though it will help with better performance. I want to understand if there is any config in OpenSSL to disable this feature and send each message as separate packet?

Below is the screenshot of how it looks now:

enter image description here

As you can see: Server Hello and Certificate are coming as one packet. Server Key Exchange and Server Hello Done are coming as one packet.

And below is the screenshot of how I want it:

enter image description here

0

There are 0 best solutions below