From f091a074d45bd6fc9968cb162101f51f86d0e432 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Tue, 22 Sep 2015 13:25:24 -0400 Subject: [PATCH] output lengths --- netcon/NetconEthernetTap.cpp | 1 + netcon/NetconEthernetTap.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/netcon/NetconEthernetTap.cpp b/netcon/NetconEthernetTap.cpp index d039e6296..93bca8743 100644 --- a/netcon/NetconEthernetTap.cpp +++ b/netcon/NetconEthernetTap.cpp @@ -214,6 +214,7 @@ void NetconEthernetTap::put(const MAC &from,const MAC &to,unsigned int etherType if(interface.input(p, &interface) != ERR_OK) { fprintf(stderr, "Error while RXing packet (netif->input)\n"); } + printf("put(): length = %d\n", len); } std::string NetconEthernetTap::deviceName() const diff --git a/netcon/NetconEthernetTap.hpp b/netcon/NetconEthernetTap.hpp index 8b04dacf2..3103ef225 100644 --- a/netcon/NetconEthernetTap.hpp +++ b/netcon/NetconEthernetTap.hpp @@ -223,6 +223,7 @@ static err_t low_level_output(struct netif *netif, struct pbuf *p) tap->_handler(tap->_arg,tap->_nwid,src_mac,dest_mac, Utils::ntoh((uint16_t)ethhdr->type),0,buf + sizeof(struct eth_hdr),p->tot_len); + printf("low_level_output(): length = %d\n", p->tot_len); return ERR_OK; }