diff options
Diffstat (limited to 'src/packet/packet.c')
-rw-r--r-- | src/packet/packet.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/packet/packet.c b/src/packet/packet.c index cdd4191..8a59003 100644 --- a/src/packet/packet.c +++ b/src/packet/packet.c @@ -17,7 +17,6 @@ void read_packet(PacketBuffer* buffer, Packet* packet) { for(uint16_t i = 0; i < packet->header.questions; i++) { if (!read_question(buffer, &packet->questions[i])) { i--; - WARN("J"); packet->header.questions--; } } @@ -26,7 +25,6 @@ void read_packet(PacketBuffer* buffer, Packet* packet) { for(uint16_t i = 0; i < packet->header.answers; i++) { if (!read_record(buffer, &packet->answers[i])) { i--; - WARN("A"); packet->header.answers--; } } @@ -35,7 +33,6 @@ void read_packet(PacketBuffer* buffer, Packet* packet) { for(uint16_t i = 0; i < packet->header.authoritative_entries; i++) { if (!read_record(buffer, &packet->authorities[i])) { i--; - WARN("B"); packet->header.authoritative_entries--; } } @@ -44,7 +41,6 @@ void read_packet(PacketBuffer* buffer, Packet* packet) { for(uint16_t i = 0; i < packet->header.resource_entries; i++) { if (!read_record(buffer, &packet->resources[i])) { i--; - WARN("C"); packet->header.resource_entries--; } } |