12 lines
258 B
C
12 lines
258 B
C
#ifndef ICMP_SOCKET_H
|
|
#define ICMP_SOCKET_H
|
|
|
|
#include "internal/icmp_internal.h"
|
|
|
|
/* Create raw ICMP socket */
|
|
int socket_create(struct icmp_handle *h);
|
|
|
|
/* Configure socket (non-blocking, buffer size) */
|
|
int socket_configure(struct icmp_handle *h);
|
|
|
|
#endif
|