From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Making package.el talk over Tor Date: Sun, 19 Nov 2023 08:17:54 +0200 Message-ID: <83o7fql10t.fsf@gnu.org> References: <8734ybkqf4.fsf@disroot.org> <87sf54q2t8.fsf@posteo.net> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6878"; mail-complaints-to="usenet@ciao.gmane.io" Cc: philipk@posteo.net, akib@disroot.org, emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Nov 19 07:19:18 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1r4b9K-0001bE-7T for ged-emacs-devel@m.gmane-mx.org; Sun, 19 Nov 2023 07:19:18 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r4b8U-0007ig-1C; Sun, 19 Nov 2023 01:18:26 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r4b8S-0007iX-Dx for emacs-devel@gnu.org; Sun, 19 Nov 2023 01:18:24 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r4b8R-000443-Qh; Sun, 19 Nov 2023 01:18:23 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=H/kEtlKbiDz/7my50P8eCfDGJ7+hk5sPNR/+/Wptqm8=; b=Ay+tVDvwcEGq ePbk9grebNbgRrw13cioiJHeQud5Jju6RfxQBgxbOvdajp21xFxS3yvryUPQg0qkynk18K3oCagOS eC2ZQLWF4YoNDUinTB4BZGhsB1Axv9ePA0k8QoBgtODYwSz4EKo1NB6fCOY0FnL8YTIdzJzPOmnjb 0rJB2HGAMhbVlfBVnrFMz9MuZ49i9FuTBQqkXJ3C0wpOit0VwskmCDxMBM1Nuudftd1qRrEw3RO/T fpLmOBBsILPCvHhUVa0M+YXlpEZQM1fSwOQUmCU1HkBcCnjQqdnTLmA1c1e3UG0VvDWzeQxbB8hro 8bItAR7bWiNfZ+XTDveUog==; In-Reply-To: (message from Richard Stallman on Sat, 18 Nov 2023 22:39:36 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:312946 Archived-At: > From: Richard Stallman > Cc: akib@disroot.org, emacs-devel@gnu.org > Date: Sat, 18 Nov 2023 22:39:36 -0500 > > > No, url.el eventually calls `make-network-process', that directly > > invokes the respective networking system calls, not making it possible > > to interject torsocks. > > Is this the code you mean? > > (open-network-stream > name buffer host service > :type gw-method > ;; Use non-blocking socket if we can. > :nowait (and (featurep 'make-network-process) > (url-asynchronous url-current-object) > '(:nowait t))) Yes. > How can I make that use TOR? Perhaps the ':type shell' connection is the solution?