From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54951) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acp5K-00071w-01 for qemu-devel@nongnu.org; Mon, 07 Mar 2016 01:56:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1acp5F-0001vd-1Y for qemu-devel@nongnu.org; Mon, 07 Mar 2016 01:56:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35175) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acp5E-0001vY-SG for qemu-devel@nongnu.org; Mon, 07 Mar 2016 01:56:00 -0500 References: From: Jason Wang Message-ID: <56DD25F8.9010602@redhat.com> Date: Mon, 7 Mar 2016 14:55:52 +0800 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCHv9 02/10] slirp: Adding ICMPv6 error sending List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Samuel Thibault , qemu-devel@nongnu.org Cc: Thomas Huth , zhanghailiang , Li Zhijian , Stefan Hajnoczi , Dave Gilbert , Vasiliy Tolstov , Huangpeng , Yann Bordenave , Gonglei , Jan Kiszka , Guillaume Subiron On 02/23/2016 03:28 AM, Samuel Thibault wrote: > From: Yann Bordenave > > Disambiguation : icmp_error is renamed into icmp_send_error, since it > doesn't manage errors, but only sends ICMP Error messages. > > Adding icmp6_send_error to send ICMPv6 Error messages. This function is > simpler than the v4 version. > Adding some calls in various functions to send ICMP errors, when a > received packet is too big, or when its hop limit is 0. Let's split this into two patches to avoid mixing renaming and new function introduction.