20 lines
226 B
C
20 lines
226 B
C
#ifndef TEST_HELPERS_H
|
|
#define TEST_HELPERS_H
|
|
|
|
#include "icmp.h"
|
|
|
|
static inline int
|
|
has_net_raw_capability(void)
|
|
{
|
|
icmp_handle_t *h = icmp_create();
|
|
|
|
if (NULL != h)
|
|
{
|
|
icmp_destroy(h);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif
|