21 lines
294 B
C
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;
|
|
};
|