Files
42_ft_ping/src/setting.h
2025-11-19 09:12:20 -06:00

21 lines
294 B
C

#pragma once
#include "host.h"
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
struct setting
{
bool help;
bool verbose;
bool flood;
bool numeric_only;
size_t timeout;
uint8_t ttl;
size_t payload_size;
struct hostenv dest;
size_t preload;
};