18 lines
318 B
C
18 lines
318 B
C
#ifndef TRACEROUTE_H
|
|
#define TRACEROUTE_H
|
|
|
|
#include <stdint.h>
|
|
#include <netinet/in.h>
|
|
|
|
struct traceroute_config {
|
|
const char *destination;
|
|
struct in_addr dest_ip;
|
|
uint8_t max_ttl;
|
|
uint8_t nqueries;
|
|
double waittime;
|
|
uint8_t flags;
|
|
};
|
|
|
|
int traceroute_run(const struct traceroute_config *config);
|
|
|
|
#endif
|