Remove inaccurate comments in fuzz/{client,server}.cc.
They now fuzz a lot more than just the initial flow. Change-Id: Ib0b7eb66969442e539a937d7d87f5ba031fcbef3 Reviewed-on: https://boringssl-review.googlesource.com/7610 Reviewed-by: Steven Valdez <svaldez@google.com> Reviewed-by: David Benjamin <davidben@google.com>
This commit is contained in:
parent
9e5eb63d01
commit
20568e7a4f
@ -18,7 +18,6 @@ static GlobalState g_state;
|
||||
extern "C" int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
|
||||
RAND_reset_for_fuzzing();
|
||||
|
||||
// This only fuzzes the initial flow from the server so far.
|
||||
SSL *client = SSL_new(g_state.ctx);
|
||||
BIO *in = BIO_new(BIO_s_mem());
|
||||
BIO *out = BIO_new(BIO_s_mem());
|
||||
|
@ -207,7 +207,6 @@ static GlobalState g_state;
|
||||
extern "C" int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
|
||||
RAND_reset_for_fuzzing();
|
||||
|
||||
// This only fuzzes the initial flow from the client so far.
|
||||
SSL *server = SSL_new(g_state.ctx);
|
||||
BIO *in = BIO_new(BIO_s_mem());
|
||||
BIO *out = BIO_new(BIO_s_mem());
|
||||
|
Loading…
Reference in New Issue
Block a user