Skip to content
Snippets Groups Projects
Commit e4a6d61b authored by Ondřej Surý's avatar Ondřej Surý
Browse files

Remove some debugging output from udp-wrap.c

parent 19a77fb8
No related branches found
No related tags found
1 merge request!410AFL Persistent Fuzzing Mode
......@@ -69,7 +69,6 @@ static int udp_stdin_handle(udp_context_t *ctx, void *d)
static int udp_stdin_send(void *d)
{
struct udp_stdin *rq = (struct udp_stdin *) d;
//fwrite(rq->iov[TX].iov_base, 1, rq->iov[TX].iov_len, stdout);
if (getenv("AFL_PERSISTENT")) {
raise(SIGSTOP);
} else {
......@@ -90,12 +89,8 @@ void udp_master_init_stdio(server_t *server) {
ifc->fd[RX] = STDIN_FILENO;
ifc->fd[TX] = STDOUT_FILENO;
fprintf(stderr, "LIST SIZE %zu\n", list_size(&server->ifaces->l));
add_tail(&server->ifaces->l, (node_t *)ifc);
_udp_init = udp_stdin_init;
_udp_recv = udp_stdin_recv;
_udp_handle = udp_stdin_handle;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment