From owner-svn-src-all@FreeBSD.ORG Tue Sep 16 01:49:28 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81E08C88; Tue, 16 Sep 2014 01:49:28 +0000 (UTC) Received: from mail-qg0-x231.google.com (mail-qg0-x231.google.com [IPv6:2607:f8b0:400d:c04::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 20CE8E83; Tue, 16 Sep 2014 01:49:28 +0000 (UTC) Received: by mail-qg0-f49.google.com with SMTP id j5so4919191qga.36 for ; Mon, 15 Sep 2014 18:49:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=ksE/Gc1a5obcdkqpA1OXNUs6Zrt9wywsgg4jes/rMb0=; b=Qyc/OU2hVetaiz71K1jyS5sfmeSFFzVCGm4N5ZIGaEphlVGAUS7qPrxqTVL4qpCCMM SJ9dyzMMjSM0scQKme2vWWS07Fhm8y4607VH5zamh6uy47JQOsHs3RLQykYcFwI+p4t0 kh8buDj3Z9fYGkZdZhTutoftYnz9NAPpXG2Q5UddiNQejztDhYp2apfRgFrmaXOfNlcr 0w77qRlLOg8Phr2+rO5Z/Ed9ZIvfraCQCIZjweIG/7Rhhb3vopKqnbNGrPYTbldqz0VZ Z3OEgmwFuUewJQv5TB1j3hXeZK1OzKHo7AU06k0aGwqJSgMi7d4V/EsI9osHnaOCDmG/ YMZg== MIME-Version: 1.0 X-Received: by 10.224.46.8 with SMTP id h8mr43023754qaf.6.1410832167204; Mon, 15 Sep 2014 18:49:27 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.224.39.139 with HTTP; Mon, 15 Sep 2014 18:49:27 -0700 (PDT) In-Reply-To: References: <201409090310.s893ALba076415@svn.freebsd.org> Date: Mon, 15 Sep 2014 18:49:27 -0700 X-Google-Sender-Auth: Us5c6jkFlCqoRomsM0mMZuJzbSM Message-ID: Subject: Re: svn commit: r271297 - head/sys/netinet From: Adrian Chadd To: Rui Paulo Content-Type: text/plain; charset=UTF-8 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Sep 2014 01:49:28 -0000 On 15 September 2014 17:00, Rui Paulo wrote: > On Sep 8, 2014, at 20:10, Adrian Chadd wrote: >> >> The IPv6 part of this is missing - I'm going to do some re-juggling of >> where various parts of the RSS framework live before I add the IPv6 >> code (read: the IPv6 code is going to go into netinet6/in6_rss.[ch], >> rather than living here.) > > Any thoughts on how are you going to handle the IPv6 part? I would probably avoid parsing any special IPv6 header type and provide RSS iff the packet is IPv6 header + next header = (TCP|UDP). I'm likely going to do exactly that for now and only support those bits in the RSS config. The IPV6 _EXT bits can come later. -a