From ecce80b92bd201fc02a40506128911bfadf8e81b Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Thu, 4 Oct 2012 21:05:22 -0400 Subject: [PATCH] [client] for spoofed SPA packets over ICMP, switche back to sending over echo reply --- client/spa_comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/spa_comm.c b/client/spa_comm.c index 97ddabff..1d914ac4 100644 --- a/client/spa_comm.c +++ b/client/spa_comm.c @@ -477,7 +477,7 @@ send_spa_packet_icmp(const char *spa_data, const int sd_len, /* Now the ICMP header values. */ - icmph->type = ICMP_ECHO; /* Make it an echo reply */ + icmph->type = ICMP_ECHOREPLY; /* Make it an echo reply */ icmph->code = 0; icmph->checksum = 0;