Re: [RFC PATCH 05/27] containers: Open a socket inside a container

2019-09-30 Thread Eric W. Biederman
Alun Evans writes: > On Fri 27 Sep '19 at 07:46 ebied...@xmission.com (Eric W. Biederman) wrote: >> >> Alun Evans writes: >> >>> Hi Eric, >>> >>> >>> On Tue, 19 Feb 2019, Eric W. Biederman wrote: David Howells writes: > Provide a system call to open a socket inside of a co

Re: [RFC PATCH 05/27] containers: Open a socket inside a container

2019-09-28 Thread Alun Evans
On Fri 27 Sep '19 at 07:46 ebied...@xmission.com (Eric W. Biederman) wrote: > > Alun Evans writes: > >> Hi Eric, >> >> >> On Tue, 19 Feb 2019, Eric W. Biederman wrote: >>> >>> David Howells writes: >>> >>> > Provide a system call to open a socket inside of a container, using that >>> > conta

Re: [RFC PATCH 05/27] containers: Open a socket inside a container

2019-09-27 Thread Eric W. Biederman
Alun Evans writes: > Hi Eric, > > > On Tue, 19 Feb 2019, Eric W. Biederman wrote: >> >> David Howells writes: >> >> > Provide a system call to open a socket inside of a container, using that >> > container's network namespace. This allows netlink to be used to manage >> > the container. >> > >

Re: [RFC PATCH 05/27] containers: Open a socket inside a container

2019-02-19 Thread Eric W. Biederman
David Howells writes: > Provide a system call to open a socket inside of a container, using that > container's network namespace. This allows netlink to be used to manage > the container. > > fd = container_socket(int container_fd, > int domain, int type, int pr

[RFC PATCH 05/27] containers: Open a socket inside a container

2019-02-15 Thread David Howells
Provide a system call to open a socket inside of a container, using that container's network namespace. This allows netlink to be used to manage the container. fd = container_socket(int container_fd, int domain, int type, int protocol); Signed-off-by: David