summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
-rw-r--r--client.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/client.c b/client.c
index 4c1a32f..aa9b13c 100644
--- a/client.c
+++ b/client.c
@@ -20,10 +20,14 @@ int main(void) {
// const char *ip_address = "192.168.43.220";
// const char *ip_address = "198.211.118.67"; // tomsmeding.com
- struct icmp_client_incoming reply =
- icmp_client_communicate(sock, ip_address, 42, 1234, "kaashandel", 10);
+ if (icmp_client_send(sock, inet_addr(ip_address), 1234, "kaashandel", 10) < 0) {
+ perror("icmp_client_send");
+ return 1;
+ }
+
+ struct icmp_incoming reply = icmp_client_receive(sock);
if (reply.data == NULL) {
- perror("icmp_client_communicate");
+ perror("icmp_client_receive");
return 1;
}