Log an error message with the node's name when receiving bad SPTPS packets.

The SPTPS code doesn't know about nodes, so when it logs an error about
a bad packet, it doesn't log which node it came from. So add a log
message with the node's name and hostname in receive_udppacket().
This commit is contained in:
Guus Sliepen 2014-12-07 17:25:30 +01:00
parent 660a2c7d1b
commit b90c42a33b

View file

@ -372,7 +372,11 @@ static bool receive_udppacket(node_t *n, vpn_packet_t *inpkt) {
}
return false;
}
return sptps_receive_data(&n->sptps, (char *)&inpkt->seqno, inpkt->len);
if(!sptps_receive_data(&n->sptps, (char *)&inpkt->seqno, inpkt->len)) {
logger(DEBUG_TRAFFIC, LOG_ERR, "Got bad packet from %s (%s)", n->name, n->hostname);
return false;
}
return true;
}
if(!n->status.validkey) {