aboutsummaryrefslogtreecommitdiffstats
path: root/icmp.h
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-08-22 14:43:24 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2013-08-22 14:46:10 +0200
commitd3e49c4280f10584587fad83bc08c6a168c174d3 (patch)
tree9127d2f55556a0a049bef296c14da74e0b05904e /icmp.h
parent82ec45bb8abf8052a558e8ad589b66b34a0084fa (diff)
downloadpingu-d3e49c4280f10584587fad83bc08c6a168c174d3.tar.bz2
pingu-d3e49c4280f10584587fad83bc08c6a168c174d3.tar.xz
move soures to src subdir
Diffstat (limited to 'icmp.h')
-rw-r--r--icmp.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/icmp.h b/icmp.h
deleted file mode 100644
index 0fc94e1..0000000
--- a/icmp.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef PINGU_ICMP_H
-#define PINGU_ICMP_H
-
-#include <asm/types.h>
-#include <sys/socket.h>
-#include <netinet/ip.h>
-
-int icmp_parse_reply(__u8 *buf, int len, int seq,
- struct sockaddr *addr,
- struct sockaddr *origdest);
-int icmp_send(int fd, struct sockaddr *to, int tolen, void *buf, int buflen);
-int icmp_send_frag_needed(int fd, struct sockaddr *to, int tolen,
- struct iphdr *iph, int newmtu);
-int icmp_send_ping(int fd, struct sockaddr *to, int tolen,
- int seq, int total_size);
-int icmp_read_reply(int fd, struct sockaddr *from, int fromlen,
- __u8 *buf, int buflen);
-int icmp_open(float timeout);
-void icmp_close(int fd);
-
-
-#endif