Re: open socket and read file inside Webrtc

2018-07-10 Thread Angelo Mantellini
daemon. I want to use IPC (or mojo?), but I don’t have examples about this approach. Thanks for your help Angelo From: Alex Gaynor Date: Thursday, July 5, 2018 at 5:44 PM To: Cc: , dev-platform Subject: Re: open socket and read file inside Webrtc Can you describe in a bit more

Re: open socket and read file inside Webrtc

2018-07-10 Thread angelo mantellini
No, I'm not of irtf Group. I need to use a version of customized webrtc on Android. Thank you Il Ven 6 Lug 2018, 18:23 Nils Ohlmeier ha scritto: > > > > On Jul 6, 2018, at 08:26, Randell Jesup wrote: > > > >>> On 05/07/2018 10:16, amantell...@gmail.com wrote: > I want to open a file

Re: open socket and read file inside Webrtc

2018-07-06 Thread Nils Ohlmeier
> On Jul 6, 2018, at 08:26, Randell Jesup wrote: > >>> On 05/07/2018 10:16, amantell...@gmail.com wrote: I want to open a file inside webrtc core part. >>> >>> If you could extend the reasons on the why it would allow us to help you. >>> >>> What is your ultimate objective? why do you

Re: open socket and read file inside Webrtc

2018-07-06 Thread Randell Jesup
>> On 05/07/2018 10:16, amantell...@gmail.com wrote: >> > I want to open a file inside webrtc core part. >> >> If you could extend the reasons on the why it would allow us to help you. >> >> What is your ultimate objective? why do you think you need to open a >> file inside webrtc core? >We

Re: open socket and read file inside Webrtc

2018-07-06 Thread amantellini
Il giorno giovedì 5 luglio 2018 19:21:51 UTC+2, Jean-Yves Avenard ha scritto: > Hi > > > On 05/07/2018 10:16, amantell...@gmail.com wrote: > > I want to open a file inside webrtc core part. > > > > > > If you could extend the reasons on the why it would allow us to help you. > > What is your

Re: open socket and read file inside Webrtc

2018-07-05 Thread Jean-Yves Avenard
Hi On 05/07/2018 10:16, amantell...@gmail.com wrote: I want to open a file inside webrtc core part. If you could extend the reasons on the why it would allow us to help you. What is your ultimate objective? why do you think you need to open a file inside webrtc core? Is it because you

Re: open socket and read file inside Webrtc

2018-07-05 Thread Alex Gaynor
Can you describe in a bit more detail what you're trying to accomplish? As a general rule, the design of the sandbox is that the content process shouldn't/can't access any system resources, and any resource you need should be provided via IPC to the parent process. alex On Thu, Jul 5, 2018 at

Re: open socket and read file inside Webrtc

2018-07-05 Thread angelo mantellini
Alternatives? Il Mer 4 Lug 2018, 19:56 Eric Rescorla ha scritto: > On Wed, Jul 4, 2018 at 5:24 AM, wrote: > > > Hi, > > I'm very new with firefox (as developer, of course). > > I need to open a file and tcp sockets inside webrtc. > > I read the following link > >

Re: open socket and read file inside Webrtc

2018-07-05 Thread amantellini
I want to open a file inside webrtc core part. Il giorno mercoledì 4 luglio 2018 21:53:22 UTC+2, Adam Roach ha scritto: > On 7/4/18 7:24 AM, amantell...@gmail.com wrote: > > Hi, > > I'm very new with firefox (as developer, of course). > > I need to open a file and tcp sockets inside webrtc. > >

Re: open socket and read file inside Webrtc

2018-07-04 Thread Adam Roach
On 7/4/18 7:24 AM, amantell...@gmail.com wrote: Hi, I'm very new with firefox (as developer, of course). I need to open a file and tcp sockets inside webrtc. I read the following link https://wiki.mozilla.org/Security/Sandbox#File_System_Restrictions there is the sandbox that does not permit to

Re: open socket and read file inside Webrtc

2018-07-04 Thread Eric Rescorla
On Wed, Jul 4, 2018 at 5:24 AM, wrote: > Hi, > I'm very new with firefox (as developer, of course). > I need to open a file and tcp sockets inside webrtc. > I read the following link > https://wiki.mozilla.org/Security/Sandbox#File_System_Restrictions > there is the sandbox that does not permit

open socket and read file inside Webrtc

2018-07-04 Thread amantellini
Hi, I'm very new with firefox (as developer, of course). I need to open a file and tcp sockets inside webrtc. I read the following link https://wiki.mozilla.org/Security/Sandbox#File_System_Restrictions there is the sandbox that does not permit to open sockets or file descriptors. could you give