Home
last modified time | relevance | path

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

/freebsd/sys/net/
H A Ddebugnet_inet.c94 DNETDEBUG("dropping packet too small for IP header\n"); in debugnet_handle_ip()
101 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_ip()
109 DNETDEBUG("bad IP version %d\n", ip->ip_v); in debugnet_handle_ip()
116 DNETDEBUG("bad IP header length (%hu)\n", hlen); in debugnet_handle_ip()
123 DNETDEBUG("m_pullup failed\n"); in debugnet_handle_ip()
130 DNETDEBUG("drop packet with IP options\n"); in debugnet_handle_ip()
138 DNETDEBUG("Bad IP header (RFC1122)\n"); in debugnet_handle_ip()
146 DNETDEBUG("bad IP checksum\n"); in debugnet_handle_ip()
156 DNETDEBUG("IP packet smaller (%hu) than header (%hu)\n", in debugnet_handle_ip()
161 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