style(parsing/sources): editing the reverse_dns to the no_reverse_dns

This commit is contained in:
Raphael 2026-03-30 15:57:16 +02:00
parent aef79ea979
commit 56085f5948
No known key found for this signature in database

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */ /* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/23 15:06:41 by rparodi #+# #+# */ /* Created: 2026/03/23 15:06:41 by rparodi #+# #+# */
/* Updated: 2026/03/24 13:30:42 by rparodi ### ########.fr */ /* Updated: 2026/03/30 15:52:18 by rparodi ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -20,10 +20,12 @@ typedef struct s_flags {
bool verbose; bool verbose;
bool flood; bool flood;
bool quiet; bool quiet;
bool reverse_dns; bool no_reverse_dns;
int payload_size;
uint64_t wait; uint64_t wait;
uint64_t timeout; uint64_t timeout;
uint64_t count; uint64_t count;
char *content; char *content;
char *destination; char *destination;
char *input;
} t_flags; } t_flags;