From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] fix conv_lisp_to_sockaddr for AF_INET6 addresses Date: Tue, 09 Feb 2016 21:13:36 +0200 Message-ID: <83mvr9bstb.fsf@gnu.org> References: <87egco56s6.fsf@gnus.org> <83io1zri30.fsf@gnu.org> <87r3gnhmu1.fsf@gnus.org> <87mvrbhmkm.fsf@gnus.org> <83h9hjqgk7.fsf@gnu.org> <87a8nalrlp.fsf@gnus.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1455045251 31968 80.91.229.3 (9 Feb 2016 19:14:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Feb 2016 19:14:11 +0000 (UTC) Cc: emacs-devel@gnu.org To: Lars Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 09 20:14:04 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aTDjg-0001ht-8a for ged-emacs-devel@m.gmane.org; Tue, 09 Feb 2016 20:14:04 +0100 Original-Received: from localhost ([::1]:59766 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTDjf-0007ev-IO for ged-emacs-devel@m.gmane.org; Tue, 09 Feb 2016 14:14:03 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38832) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTDjY-0007eK-FO for emacs-devel@gnu.org; Tue, 09 Feb 2016 14:14:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTDjT-0001mn-Cw for emacs-devel@gnu.org; Tue, 09 Feb 2016 14:13:56 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46660) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTDjT-0001mj-9d; Tue, 09 Feb 2016 14:13:51 -0500 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1564 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1aTDjS-00071G-IS; Tue, 09 Feb 2016 14:13:51 -0500 In-reply-to: <87a8nalrlp.fsf@gnus.org> (message from Lars Ingebrigtsen on Tue, 09 Feb 2016 10:17:22 +1100) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:199629 Archived-At: > From: Lars Ingebrigtsen > Cc: emacs-devel@gnu.org > Date: Tue, 09 Feb 2016 10:17:22 +1100 > > Eli Zaretskii writes: > > > Is it possible to use gnutls-serv instead, or at least as an option? > > You require Emacs to be compiled with GnuTLS, so I think the > > probability of having gnutls-serv installed is higher than having > > openssl, certainly on non-Posix hosts. Besides, openssl is less > > friendly to the GNU project, both legally and otherwise. > > Good idea. I've now changed the test to use gnutls-serv. Thanks. It seems to work fine on MS-Windows (after fixing a minor gotcha), but I have a problem with connect-to-tls-ipv6-nowait: it fails because the Windows build doesn't support IPv6, but if I force it to be skipped, the next test, echo-server-nowait, fails because it receives an empty string instead of "echo". However, when connect-to-tls-ipv6-nowait is left to run (and fail), then echo-server-nowait succeeds. So there seems to be some strange connection between them, but I cannot see what is it. Can you tell what am I missing? Thanks.