view fuzz/fuzzer-client.c @ 1858:ed3326f21888

Test for IP_TOS and hardcode DSCP values This allows it to work on macos too
author Matt Johnston <matt@ucc.asn.au>
date Tue, 25 Jan 2022 17:57:05 +0800
parents d5680e12ac33
children
line wrap: on
line source

#include "fuzz.h"

int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
	return fuzz_run_client(Data, Size, 0);
}