From 49712c34bea5a8a20aa1b26babe622f888eb6c4f Mon Sep 17 00:00:00 2001 From: Santiago Alessandri Date: Mon, 15 Aug 2011 19:18:07 -0300 Subject: [PATCH] Removed Debug printing code --- src/ethernetII.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ethernetII.cpp b/src/ethernetII.cpp index 49ed40b..a120017 100644 --- a/src/ethernetII.cpp +++ b/src/ethernetII.cpp @@ -31,8 +31,6 @@ #include "ethernetII.h" #include "utils.h" -#include - Tins::EthernetII::EthernetII(const uint8_t* mac_dst, const uint8_t* mac_src, const std::string& iface, PDU* child) throw (std::runtime_error) : PDU(ETHERTYPE_IP, child) { this->dst_mac(mac_dst); @@ -105,7 +103,6 @@ void Tins::EthernetII::write_serialization(uint8_t *buffer, uint32_t total_sz, c default: type = 0; } - std::cout << std::hex << type << '\n'; this->header.payload_type = Utils::net_to_host_s(type); }