Your message dated Sat, 5 Feb 2005 17:23:42 -0800
with message-id <[EMAIL PROTECTED]>
and subject line closing
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 20 Aug 2004 16:04:18 +0000
>From [EMAIL PROTECTED] Fri Aug 20 09:04:18 2004
Return-path: <[EMAIL PROTECTED]>
Received: from attila.bofh.it [213.92.8.2] (postfix)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1ByBsI-0001RL-00; Fri, 20 Aug 2004 09:04:18 -0700
Received: by attila.bofh.it (Postfix, from userid 10)
        id 6B7ED5F773; Fri, 20 Aug 2004 18:04:16 +0200 (CEST)
Received: by wonderland.linux.it (Postfix, from userid 1001)
        id B31531C43F; Fri, 20 Aug 2004 18:04:07 +0200 (CEST)
Date: Fri, 20 Aug 2004 18:04:07 +0200
From: Marco d'Itri <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RFC3678 API support
Message-ID: <[EMAIL PROTECTED]>
Mail-Followup-To: [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040803i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.5 required=4.0 tests=BAYES_00,HAS_PACKAGE,
        UPPERCASE_50_75 autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: strace
Severity: wishlist
Tags: patch upstream

diff -urN strace-4.5.6.orig/net.c strace-4.5.6/net.c
--- strace-4.5.6.orig/net.c     2004-07-12 09:44:08.000000000 +0200
+++ strace-4.5.6/net.c  2004-08-20 17:24:43.000000000 +0200
@@ -667,6 +668,36 @@
 #ifdef IP_DROP_MEMBERSHIP
        { IP_DROP_MEMBERSHIP,   "IP_DROP_MEMBERSHIP"    },
 #endif
+#ifdef IP_UNBLOCK_SOURCE
+       { IP_UNBLOCK_SOURCE,    "IP_UNBLOCK_SOURCE"     },
+#endif
+#ifdef IP_BLOCK_SOURCE
+       { IP_BLOCK_SOURCE,      "IP_BLOCK_SOURCE"       },
+#endif
+#ifdef IP_ADD_SOURCE_MEMBERSHIP
+       { IP_ADD_SOURCE_MEMBERSHIP,     "IP_ADD_SOURCE_MEMBERSHIP"      },
+#endif
+#ifdef IP_DROP_SOURCE_MEMBERSHIP
+       { IP_DROP_SOURCE_MEMBERSHIP,    "IP_DROP_SOURCE_MEMBERSHIP"     },
+#endif
+#ifdef MCAST_JOIN_GROUP
+       { MCAST_JOIN_GROUP,     "MCAST_JOIN_GROUP"      },
+#endif
+#ifdef MCAST_BLOCK_SOURCE
+       { MCAST_BLOCK_SOURCE,   "MCAST_BLOCK_SOURCE"    },
+#endif
+#ifdef MCAST_UNBLOCK_SOURCE
+       { MCAST_UNBLOCK_SOURCE, "MCAST_UNBLOCK_SOURCE"  },
+#endif
+#ifdef MCAST_LEAVE_GROUP
+       { MCAST_LEAVE_GROUP,    "MCAST_LEAVE_GROUP"     },
+#endif
+#ifdef MCAST_JOIN_SOURCE_GROUP
+       { MCAST_JOIN_SOURCE_GROUP,      "MCAST_JOIN_SOURCE_GROUP"       },
+#endif
+#ifdef MCAST_LEAVE_SOURCE_GROUP
+       { MCAST_LEAVE_SOURCE_GROUP,     "MCAST_LEAVE_SOURCE_GROUP"      },
+#endif
 #ifdef IP_BROADCAST_IF
        { IP_BROADCAST_IF,      "IP_BROADCAST_IF"       },
 #endif
@@ -677,6 +708,30 @@
 };
 #endif /* SOL_IP */
 
+#ifdef SOL_IPV6
+static struct xlat sockipv6options[] = {
+#ifdef MCAST_JOIN_GROUP
+       { MCAST_JOIN_GROUP,     "MCAST_JOIN_GROUP"      },
+#endif
+#ifdef MCAST_BLOCK_SOURCE
+       { MCAST_BLOCK_SOURCE,   "MCAST_BLOCK_SOURCE"    },
+#endif
+#ifdef MCAST_UNBLOCK_SOURCE
+       { MCAST_UNBLOCK_SOURCE, "MCAST_UNBLOCK_SOURCE"  },
+#endif
+#ifdef MCAST_LEAVE_GROUP
+       { MCAST_LEAVE_GROUP,    "MCAST_LEAVE_GROUP"     },
+#endif
+#ifdef MCAST_JOIN_SOURCE_GROUP
+       { MCAST_JOIN_SOURCE_GROUP,      "MCAST_JOIN_SOURCE_GROUP"       },
+#endif
+#ifdef MCAST_LEAVE_SOURCE_GROUP
+       { MCAST_LEAVE_SOURCE_GROUP,     "MCAST_LEAVE_SOURCE_GROUP"      },
+#endif
+       { 0,                    NULL                    },
+};
+#endif /* SOL_IPV6 */
+
 #ifdef SOL_IPX
 static struct xlat sockipxoptions[] = {
        { IPX_TYPE,     "IPX_TYPE"      },
@@ -1378,6 +1433,11 @@
                        printxval(sockipoptions, tcp->u_arg[2], "IP_???");
                        break;
 #endif
+#ifdef SOL_IPV6
+               case SOL_IPV6:
+                       printxval(sockipv6options, tcp->u_arg[2], "IPV6_???");
+                       break;
+#endif
 #ifdef SOL_IPX
                case SOL_IPX:
                        printxval(sockipxoptions, tcp->u_arg[2], "IPX_???");
@@ -1505,6 +1565,11 @@
                printxval(sockipoptions, name, "IP_???");
                break;
 #endif
+#ifdef SOL_IPV6
+           case SOL_IPV6:
+               printxval(sockipv6options, name, "IPV6_???");
+               break;
+#endif
 #ifdef SOL_IPX
            case SOL_IPX:
                printxval(sockipxoptions, name, "IPX_???");


-- 
ciao, |
Marco | [7599 spuOPOuBPye0Q]

---------------------------------------
Received: (at 267084-done) by bugs.debian.org; 6 Feb 2005 01:23:43 +0000
>From [EMAIL PROTECTED] Sat Feb 05 17:23:43 2005
Return-path: <[EMAIL PROTECTED]>
Received: from mail27.sea5.speakeasy.net [69.17.117.29] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Cxb9L-0001nw-00; Sat, 05 Feb 2005 17:23:43 -0800
Received: (qmail 21420 invoked from network); 6 Feb 2005 01:23:43 -0000
Received: from gateway.sf.frob.com ([64.81.54.130])
          (envelope-sender <[EMAIL PROTECTED]>)
          by mail27.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP
          for <[EMAIL PROTECTED]>; 6 Feb 2005 01:23:43 -0000
Received: from magilla.sf.frob.com (magilla.sf.frob.com [198.49.250.228])
        by gateway.sf.frob.com (Postfix) with ESMTP
        id B3096357B; Sat,  5 Feb 2005 17:23:42 -0800 (PST)
Received: from magilla.sf.frob.com (localhost.localdomain [127.0.0.1])
        by magilla.sf.frob.com (8.12.11/8.12.9) with ESMTP id j161NgON008167;
        Sat, 5 Feb 2005 17:23:42 -0800
Received: (from [EMAIL PROTECTED])
        by magilla.sf.frob.com (8.12.11/8.12.11/Submit) id j161Ngvk008164;
        Sat, 5 Feb 2005 17:23:42 -0800
Date: Sat, 5 Feb 2005 17:23:42 -0800
Message-Id: <[EMAIL PROTECTED]>
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: closing
X-Antipastobozoticataclysm: 
   When George Bush projectile vomits antipasto on the Japanese.
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-0.4 required=4.0 tests=BAYES_00,NO_REAL_NAME,ONEWORD 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

This was done in 4.5.7.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to