Re: Add OpenVPN support

2010-11-04 Thread Daniel Wagner
Hi Samuel, On Wed, Nov 03, 2010 at 03:12:42PM +0100, Samuel Ortiz wrote: > All patches (except the openconnect one) applied now. I'd appreciate if you > could give it a try against your OpenVPN setup. I have it running now for a day. Also did some disconnect and reconnect. Every thing works fine

ANNOUNCE: ConnMan 0.63

2010-11-04 Thread Samuel Ortiz
ConnMan 0.63 is out and was released on November 03, 2010. With more than 120 commits pushed in one month, 0.63 is a fairly big release. This features major highlights are: - udev dependency removal: ConnMan now fully relies on RTNL for device detection. - OpenVPN support (From Daniel Wagner, B

Re: [PACrunner][PATCH] Adding full manual proxy support to pacrunner

2010-11-04 Thread Tomasz Bursztyka
Hi, On 02/11/10 13:32, Bursztyka Tomasz (Nokia-MS/Helsinki) wrote: Hello, Here are rewritten patches for manual proxy support, and now it also provides the patch to "run" the manual configuration. Anyone for reviewing the patch please? Marcel, Samuel? Thanks, Tomasz _

required plugins

2010-11-04 Thread tomw
Hi, I was trying to build connman from the git repositories on Ubuntu 10.10. In the absence of any more detailed documentation I took the intuitive (perhaps naive) approach ./configure --enable-ethernet --enable-wifi --enable-dhclient --enable-dnsproxy. After restarting connman I'm getting a few

Re: required plugins

2010-11-04 Thread Daniel Wagner
On Thu, Nov 04, 2010 at 04:12:40PM +0100, tomw wrote: > Hi, > > I was trying to build connman from the git repositories on Ubuntu 10.10. > In the absence of any more detailed documentation I took the intuitive > (perhaps naive) approach ./configure --enable-ethernet --enable-wifi > --enable-dhclie

Re: required plugins

2010-11-04 Thread Samuel Ortiz
Hi, On Thu, Nov 04, 2010 at 04:12:40PM +0100, tomw wrote: > Hi, > > I was trying to build connman from the git repositories on Ubuntu 10.10. > In the absence of any more detailed documentation I took the intuitive > (perhaps naive) approach ./configure --enable-ethernet --enable-wifi > --enable-d

Re: required plugins

2010-11-04 Thread tomw
* pulled the latest from git (saw your commit) * ./configure --enable-ethernet=builtin --enable-wifi=builtin --enable-dhclient=builtin --enable-dnsproxy=builtin * make, make install * restart connman * getting the same errors ... Nov 4 18:10:52 laptop-2 connmand[18345]: Connection Manager versi

Switching over to net.connman D-Bus service name

2010-11-04 Thread Marcel Holtmann
Hi everyone, so I think it is time now to get rid of org.moblin.connman D-Bus service name and finally replace it with net.connman. So this is a heads up for all UI developers that they need to change their code to adjust to this new service name. Within the same step, I will also be removing and

Re: Switching over to net.connman D-Bus service name

2010-11-04 Thread Rishi Kumar
Hi All, Could you help me with how the connman daemon really works ? I meant the core. What all things happen in the core before the plugin is called ? Maybe you can give me some documentation for the same. Looking forward to your reply. Thanks and Regards, Rishi Kumar On Thu, Nov 4, 2010 at

Re: Switching over to net.connman D-Bus service name

2010-11-04 Thread Marcel Holtmann
Hi Rishi, please do NOT top post on the mailing list. And please do NOT steal threads with a different topic. If you have a question, then open your own thread and use the mailing list netiquette. > Could you help me with how the connman daemon really works ? > > I meant the core. What all thing

[PATCH 1/2] Add chunk encode support when doing HTTP request.

2010-11-04 Thread Mohamed Abbas
Allow user to send chunked HTTP post request by calling the input callback function on write watch until the user indicate no more data we send the 0 length chunk to indicate end of request body. --- gweb/gweb.c | 209 ++- 1 files changed,

[PATCH 2/2] Support chunk encoding in http response body.

2010-11-04 Thread Mohamed Abbas
Add support to handle chunk encoding in response data. --- gweb/gweb.c | 157 -- 1 files changed, 151 insertions(+), 6 deletions(-) diff --git a/gweb/gweb.c b/gweb/gweb.c index 5c473f9..77dcc93 100644 --- a/gweb/gweb.c +++ b/gweb/gweb.c @@

Re: [PATCH 1/2] Add chunk encode support when doing HTTP request.

2010-11-04 Thread Marcel Holtmann
Hi Mohamed, > session->transport_watch = g_io_add_watch(session->transport_channel, > - G_IO_IN | G_IO_HUP | G_IO_NVAL | G_IO_ERR, > + G_IO_OUT | G_IO_IN | G_IO_HUP | G_IO_NVAL | G_IO_ERR, > receive

Re: [PATCH 2/2] Support chunk encoding in http response body.

2010-11-04 Thread Marcel Holtmann
Hi Mohamed, > Add support to handle chunk encoding in response data. > --- > gweb/gweb.c | 157 -- > 1 files changed, 151 insertions(+), 6 deletions(-) > > diff --git a/gweb/gweb.c b/gweb/gweb.c > index 5c473f9..77dcc93 100644 > --- a/gweb

Re: required plugins

2010-11-04 Thread Samuel Ortiz
Please don't top post. See my answers below: On Thu, Nov 04, 2010 at 06:15:36PM +0100, tomw wrote: > > * pulled the latest from git (saw your commit) > * ./configure --enable-ethernet=builtin --enable-wifi=builtin > --enable-dhclient=builtin --enable-dnsproxy=builtin > * make, make install > * r

RE: [PATCH] Fix BMC 8074 fail to enable technology after rfkill

2010-11-04 Thread Deng, Ying An
Thanks for your suggestion, I will try it after get back from sick leave. Best regards, DengYingAn > -Original Message- > From: Samuel Ortiz [mailto:sa...@linux.intel.com] > Sent: Thursday, November 04, 2010 7:23 AM > To: Deng, Ying An > Cc: connman@connman.net > Subject: Re: [PATCH] Fix

[PATCH 1/2 Rev 3] Add chunk encode support when doing HTTP request.

2010-11-04 Thread Mohamed Abbas
Allow user to send chunked HTTP post request by calling the input callback function on write until the user indicate no more data then we send the 0 length chunk to indicate end of request body. Now we use a new watch for sending data. This watch is only active if more data need to be send. --- gw

[PATCH 2/2 Rev 3] Support chunk encode in HTTP response.

2010-11-04 Thread Mohamed Abbas
If chunk encode is used them make sure we strip the chunk body only. --- gweb/gweb.c | 168 --- 1 files changed, 161 insertions(+), 7 deletions(-) diff --git a/gweb/gweb.c b/gweb/gweb.c index cc75f3b..c970b1c 100644 --- a/gweb/gweb.c +++ b/