From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 10 08:40:14 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C86C37B401 for ; Sat, 10 May 2003 08:40:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11FAD43FDF for ; Sat, 10 May 2003 08:40:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4AFeDUp031029 for ; Sat, 10 May 2003 08:40:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4AFeDKj031028; Sat, 10 May 2003 08:40:13 -0700 (PDT) Date: Sat, 10 May 2003 08:40:13 -0700 (PDT) Message-Id: <200305101540.h4AFeDKj031028@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Paolo Subject: Re: ports/45490: tightvnc leaks connection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paolo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 May 2003 15:40:14 -0000 The following reply was made to PR ports/45490; it has been noted by GNATS. From: Paolo To: scheidell@secnap.net, Cc: Subject: Re: ports/45490: tightvnc leaks connection Date: Sat, 10 May 2003 17:30:12 +0200 (CEST) Hi, after digging in the sources, I've found that with '-nolisten tcp' the server is working ok etc.., but Xvnc no more listen on 6000+DISPLAY [at least with '-localhost'] [I use Xvnc on a handeld, the c700 Zaurus] example: Xvnc -localhost -geometry 640x480 -depth 16 -pixelformat RGB565 :1 & # netstat -aln Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:5901 127.0.0.1:1058 ESTABLISHED tcp 0 0 127.0.0.1:1058 127.0.0.1:5901 ESTABLISHED Xvnc -localhost -nolisten tcp -geometry 640x480 -depth 16 -pixelformat RGB565 :1 & # netstat -aln Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:1057 127.0.0.1:5901 ESTABLISHED tcp 0 0 127.0.0.1:5901 127.0.0.1:1057 ESTABLISHED Hope this help.