From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <53b87e2330dc037503aa3b11f0134999@9srv.net> To: 9fans@9fans.net Date: Mon, 6 Oct 2008 22:58:37 -0400 From: a@9srv.net In-Reply-To: <3ad91225-a26c-4949-b915-5c2fe36a98cf@64g2000hsm.googlegroups.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] connection via proxy Topicbox-Message-UUID: 1794f69e-ead4-11e9-9d60-3106f5b1d025 You're after one of two things. 1) It mostly sounds like you want to send 9p requests to an existing server via an actual http proxy. If this is indeed what you're looking for, you're pretty much out of luck. No code or service exists to translate from 9p to/from http, which is what would be needed before you could do this. I suppose there's no theoretical reason such a mapping couldn't exist, but you would have to do the design and coding yourself. It would be a significant undertaking to do reasonably. 2) Instead, one could read your mail as saying you just need to use what you're describing as the "http proxy port", 8080. In that case, you're okay: most servers which can listen on the network can accept an arbitrary port to listen on; see the 'listen' command in fossilcons(8), for example. For the rest, aux/trampoline in conjunction with listen(8) will do well. Sadly, I think you want option 1, which doesn't exist. Anthony