help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

erc-tls over socks


From: Aidan Gauland
Subject: erc-tls over socks
Date: Wed, 28 Mar 2012 19:17:41 -0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux)

Hi,

I can tunnel plain, unencrypted ERC over SOCKS by evaluating this...

(let ((erc-server-connect-function 'socks-open-network-stream)
      (socks-server '("Tunnel" "localhost" 1080 5)))
  (erc :server "irc.example.net"
       :port 6667
       :nick "aidalgol" :full-name "Millicent Bystander"))

But if I change `erc' to `erc-tls' (and the port to 6697 or whatever
port on which the server accepts encrypted IRC connects)...

(let ((erc-server-connect-function 'socks-open-network-stream)
      (socks-server '("Tunnel" "localhost" 1080 5)))
  (erc-tls :server "irc.example.net"
           :port 6697
           :nick "aidalgol" :full-name "Millicent Bystander"))

...ERC connects directly, bypassing the SOCKS proxy.  Is it simply not
possible to use TLS over SOCKS at all (even outside Emacs), or does it
have to do with the way in which Emacs initiates TLS connections?

Regards,
Aidan Gaualnd


reply via email to

[Prev in Thread] Current Thread [Next in Thread]