tls13: srv: Do not use early_data_status

Due to the scope reduction for
mbedtls_ssl_read_early_data(), on
server as early data state variable
we now only need a flag in the
handshake context indicating if
the server has accepted early data
or not.

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
diff --git a/tests/suites/test_suite_ssl.function b/tests/suites/test_suite_ssl.function
index d26407e..12b048f 100644
--- a/tests/suites/test_suite_ssl.function
+++ b/tests/suites/test_suite_ssl.function
@@ -3768,8 +3768,7 @@
                    &(server_ep.ssl), &(client_ep.ssl),
                    MBEDTLS_SSL_CLIENT_FINISHED), 0);
 
-    TEST_EQUAL(server_ep.ssl.early_data_status,
-               MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED);
+    TEST_EQUAL(server_ep.ssl.handshake->early_data_accepted, 1);
     TEST_EQUAL(server_pattern.counter, 1);
 
 exit: