Move queue management into mbedtls_test_ssl_dtls_join_endpoints

This allows mbedtls_test_ssl_endpoint_init() to no longer interact with the
other endpoint.

No behavior change.

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
diff --git a/tests/include/test/ssl_helpers.h b/tests/include/test/ssl_helpers.h
index ca43663..d98f48e 100644
--- a/tests/include/test/ssl_helpers.h
+++ b/tests/include/test/ssl_helpers.h
@@ -205,6 +205,7 @@
 
     /* Objects owned by the endpoint */
     int *ciphersuites;
+    mbedtls_test_ssl_message_queue queue_input;
     mbedtls_x509_crt *ca_chain;
     mbedtls_x509_crt *cert;
     mbedtls_pk_context *pkey;