From: marta Date: Fri, 6 Nov 2009 16:46:01 +0000 (+0000) Subject: Removed debug messages. X-Git-Tag: ipfw-0.9-5~2 X-Git-Url: http://git.onelab.eu/?p=ipfw.git;a=commitdiff_plain;h=555356c75160188585b6f94df115fbdddc8cb3dd Removed debug messages. --- diff --git a/dummynet/ip_fw2.c b/dummynet/ip_fw2.c index 102cd5d..e3483df 100644 --- a/dummynet/ip_fw2.c +++ b/dummynet/ip_fw2.c @@ -2002,16 +2002,20 @@ check_uidgid(ipfw_insn_u32 *insn, int proto, struct ifnet *oif, int match = 0; struct sk_buff *skb = ((struct mbuf *)inp)->m_skb; +#if 0 /* debug */ printf("%s opcode %d arg %d oif %p src 0x%x:%d dst 0x%x:%d\n", __FUNCTION__, insn->o.opcode, insn->d[0], oif, ntohl(src_ip.s_addr), ntohs(src_port), ntohl(dst_ip.s_addr), ntohs(dst_port) ); +#endif if (insn->o.opcode == O_JAIL) { #ifdef IPFW_PLANETLAB match = (skb->skb_tag == insn->d[0]); - printf("JAIL compiled for planetlab state %d xid %d want %d result %d\n", +#if 0 /* debug */ + printf("JAIL compiled for planetlab xid %d want %d result %d\n", skb->skb_tag, insn->d[0], match); +#endif #endif return match;