Re: [Qemu-devel] [PATCH 1/1] slirp: add SOCKS5 support

2017-04-03 Thread Laurent Vivier
Le 03/04/2017 à 13:41, Daniel P. Berrange a écrit : > On Mon, Mar 27, 2017 at 01:41:36PM -0500, Eric Blake wrote: >> On 03/27/2017 01:21 PM, Laurent Vivier wrote: >>> When the VM is used behind a firewall, This allows >>> to use a SOCKS5 proxy server to connect the VM IP stack >> >> "allows to $ver

Re: [Qemu-devel] [PATCH 1/1] slirp: add SOCKS5 support

2017-04-03 Thread Daniel P. Berrange
On Mon, Mar 27, 2017 at 01:41:36PM -0500, Eric Blake wrote: > On 03/27/2017 01:21 PM, Laurent Vivier wrote: > > When the VM is used behind a firewall, This allows > > to use a SOCKS5 proxy server to connect the VM IP stack > > "allows to $verb" is not idiomatic English; the correct forms are > gen

Re: [Qemu-devel] [PATCH 1/1] slirp: add SOCKS5 support

2017-03-27 Thread Laurent Vivier
Le 27/03/2017 à 20:41, Eric Blake a écrit : > On 03/27/2017 01:21 PM, Laurent Vivier wrote: >> When the VM is used behind a firewall, This allows >> to use a SOCKS5 proxy server to connect the VM IP stack > > "allows to $verb" is not idiomatic English; the correct forms are > generally "allows $su

Re: [Qemu-devel] [PATCH 1/1] slirp: add SOCKS5 support

2017-03-27 Thread Eric Blake
On 03/27/2017 01:21 PM, Laurent Vivier wrote: > When the VM is used behind a firewall, This allows > to use a SOCKS5 proxy server to connect the VM IP stack "allows to $verb" is not idiomatic English; the correct forms are generally "allows $subject to $verb" or "allows ${verb}ing". In this case,

[Qemu-devel] [PATCH 1/1] slirp: add SOCKS5 support

2017-03-27 Thread Laurent Vivier
When the VM is used behind a firewall, This allows to use a SOCKS5 proxy server to connect the VM IP stack directly to the Internet. This implementation doesn't manage UDP packets, so they are simply dropped (as with restrict=on), except for the localhost as we need it for DNS. Signed-off-by: Lau