Home
last modified time | relevance | path

Searched refs:DNETDEBUG (Results 1 – 3 of 3) sorted by relevance

/src/sys/net/
H A Ddebugnet_inet.c93 DNETDEBUG("dropping packet too small for IP header\n"); in debugnet_handle_ip()
100 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_ip()
108 DNETDEBUG("bad IP version %d\n", ip->ip_v); in debugnet_handle_ip()
115 DNETDEBUG("bad IP header length (%hu)\n", hlen); in debugnet_handle_ip()
122 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_ip()
129 DNETDEBUG("drop packet with IP options\n"); in debugnet_handle_ip()
137 DNETDEBUG("Bad IP header (RFC1122)\n"); in debugnet_handle_ip()
145 DNETDEBUG("bad IP checksum\n"); in debugnet_handle_ip()
155 DNETDEBUG("IP packet smaller (%hu) than header (%hu)\n", in debugnet_handle_ip()
160 DNETDEBUG("IP packet bigger (%hu) than ethernet packet (%d)\n", in debugnet_handle_ip()
[all …]
H A Ddebugnet.c219 DNETDEBUG("Acking with seqno %u\n", ntohl(seqno)); in debugnet_ack_output()
389 DNETDEBUG("ignoring small debugnet_msg packet\n"); in debugnet_handle_rx_msg()
398 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_rx_msg()
405 DNETDEBUG("Dropping short packet.\n"); in debugnet_handle_rx_msg()
418 DNETDEBUG("Got unexpected debugnet message %u\n", hdr_type); in debugnet_handle_rx_msg()
433 DNETDEBUG("RX handler was not able to accept message, error %d. " in debugnet_handle_rx_msg()
440 DNETDEBUG("Couldn't ACK rx packet %u; %d\n", ntohl(seqno), error); in debugnet_handle_rx_msg()
458 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_ack()
493 DNETDEBUG("ignoring small UDP packet\n"); in debugnet_handle_udp()
502 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_udp()
[all …]
H A Ddebugnet_int.h34 #define DNETDEBUG(f, ...) do { \ macro