We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e0242 commit 5da0fe8Copy full SHA for 5da0fe8
src/main/java/se/uu/it/dtlsfuzzer/components/sul/core/TlsSul.java
@@ -205,6 +205,10 @@ private void initializeTransportHandler() {
205
// try again
206
}
207
208
+ var firstClientHello = outputMapper.receiveOutput(context);
209
+ if (!firstClientHello.getName().equals("CLIENT_HELLO")) {
210
+ LOGGER.fatal("The first Client Hello should have been received");
211
+ }
212
213
} catch (IOException e) {
214
LOGGER.error("Could not initialize transport handler");
0 commit comments