libicmp/includes/internal/icmp_socket.h
2026-01-25 15:12:53 +01:00

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