c92s

Results 4 comments of c92s

Can you elaborate on how the peeking trick should work? For me, in both cases (connecting via HTTP & HTTPS), the timer does not run in a timeout, as the...

@BrandonLeeDotDev thanks for the info! FYI: we could further refine that, using the available `rustls` enums (`rustls::ContentType::Handshake` & `rustls::HandshakeType::ClientHello`), e.g.: ```rust if buf[0] == rustls::ContentType::Handshake.get_u8() && buf[5] == rustls::HandshakeType::ClientHello.get_u8() {...

Thanks for your answer. I did the following according to your guidance. 1. The feature & step file path matching works: I can automatically create undefined steps from the feature...

Hi @kieran-ryan thanks for the information. I guess I will stick to the `{}` and `{word}` matching then, escaping with double quotes or removing quotes in the function are not...