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:
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:

