From owner-freebsd-stable@FreeBSD.ORG Sun Mar 29 20:53:09 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 102BF7FD for ; Sun, 29 Mar 2015 20:53:09 +0000 (UTC) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC73B800 for ; Sun, 29 Mar 2015 20:53:08 +0000 (UTC) Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id E6DA42842F for ; Sun, 29 Mar 2015 22:53:04 +0200 (CEST) Received: from illbsd.quip.test (ip-89-177-50-74.net.upcbroadband.cz [89.177.50.74]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 4B2B72842B for ; Sun, 29 Mar 2015 22:53:04 +0200 (CEST) Message-ID: <55186630.7020507@quip.cz> Date: Sun, 29 Mar 2015 22:53:04 +0200 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:35.0) Gecko/20100101 Firefox/35.0 SeaMonkey/2.32 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: nc (netcat) in 10.1 breaks after upgrade from 9.3 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Mar 2015 20:53:09 -0000 nc (netcat) in 10.1 behaves differently than it was before upgrade and breaks our scripts for monitoring services. For example, following command works in FreeBSD 8.4 and 9.3 echo stats | nc localhost 11211 But it hangs in 10.1 at the END and never finishes. It must be changed to: echo stats | nc -N localhost 11211 Is it intentional? Miroslav Lachman