RE: [PATCH 00/11] Re-enable connman-gnome with latest connman version

2011-03-10 Thread Xu, Dongxiao
Xu, Dongxiao wrote: > Samuel Ortiz wrote: >> Hi Dongxiao, >> >> On Fri, Feb 25, 2011 at 04:51:32PM +0800, Xu, Dongxiao wrote: >>> Hi list, >>> >>> Yocto project adopts connman and connman-gnome as its default wifi >>> configuration core and frontend. See http://www.yoctoproject.org/ >>> >>> Howe

RE: [PATCH 00/11] Re-enable connman-gnome with latest connman version

2011-03-10 Thread Xu, Dongxiao
Samuel Ortiz wrote: > Hi Dongxiao, > > On Fri, Feb 25, 2011 at 04:51:32PM +0800, Xu, Dongxiao wrote: >> Hi list, >> >> Yocto project adopts connman and connman-gnome as its default wifi >> configuration core and frontend. See http://www.yoctoproject.org/ >> >> However connman-gnome is no longer

Re: [PATCH] dhcp: Stop pending gdhcp client requests

2011-03-10 Thread Samuel Ortiz
Hi Daniel, On Thu, Mar 10, 2011 at 10:43:43AM +0100, Daniel Wagner wrote: > From: Daniel Wagner > > When remove_network is called there could be still a pending > dhcp request in the dhcp client. > > Fixes BMC#13947 Thanks a lot for taking care of that, patch applied. Cheers, Samuel. -- Inte

Re: [PATCH 1/2] tethering: Add wifi interface to bridge after carrier on

2011-03-10 Thread Samuel Ortiz
Hi Martin, On Wed, Mar 09, 2011 at 04:16:48PM +0800, martin...@intel.com wrote: > From: Martin Xu > > When changing wifi from STA to AP the interface needs to be closed > and then opened. Only after the interface is opened and detected > carrier, the interface can be added to bridge. Thanks a lo

Re: [PATCH 6to4 v3 1/7] doc: Add description about 6to4 tunnelling.

2011-03-10 Thread Samuel Ortiz
Hi Jukka, On Wed, Mar 09, 2011 at 08:30:04AM +, jukka.rissa...@nokia.com wrote: > Hi Samuel, > > ext Samuel Ortiz wrote: > > Hi Jukka, > > > > On Mon, Feb 21, 2011 at 03:38:18PM +0200, Jukka Rissanen wrote: > >> --- > >> doc/service-api.txt | 11 +++ > >> 1 files changed, 11 inser

Re: [PATCH 6to4 v3 7/7] 6to4: Check the connectivity via tunnel after creating it.

2011-03-10 Thread Samuel Ortiz
Hi Jukka, On Wed, Mar 09, 2011 at 08:42:15AM +, jukka.rissa...@nokia.com wrote: > Hi Samuel, > > ext Samuel Ortiz wrote: > > Hi Jukka, > > > >> +PKG_CHECK_MODULES(GIO, gio-2.0 >= 2.22.2) > >> +AC_SUBST(GIO_CFLAGS) > >> +AC_SUBST(GIO_LIBS) > >> + > > So I think this patch should be rewritten

Re: [PATCH 4/6] config: Export a function to load service configs

2011-03-10 Thread Samuel Ortiz
Hi Henri, On Thu, Mar 10, 2011 at 11:54:40AM +0200, Henri Bragge wrote: > Hi Samuel, > > On Thu, 2011-03-10 at 01:22 +0100, Samuel Ortiz wrote: > > Hi Henri, > > > > On Thu, Feb 24, 2011 at 04:03:18PM +0200, Henri Bragge wrote: > > > __connman_config_load_service function can be used by other p

Re: [PATCH 00/11] Re-enable connman-gnome with latest connman version

2011-03-10 Thread Samuel Ortiz
Hi Dongxiao, On Fri, Feb 25, 2011 at 04:51:32PM +0800, Xu, Dongxiao wrote: > Hi list, > > Yocto project adopts connman and connman-gnome as its default wifi > configuration core and frontend. See http://www.yoctoproject.org/ > > However connman-gnome is no longer under development, and it doesn

Re: Setting APN, Username, Phone Number on connmam 0.70

2011-03-10 Thread Samuel Ortiz
Hi Claudio, On Thu, Mar 10, 2011 at 09:31:06AM +0100, claudio wrote: > Hi, > > I'm using connman con 3g, how is the property to set APN, Username, and > Password ? As of 0.70, you're supposed to do that by setting the oFono stack directly. Either through D-bus or through provisioning. Cheers, Sa

Re: [PATCH v2] doc: Add EAP login support in Agent API

2011-03-10 Thread lynxis
> On Fri, 2011-02-11 at 13:25 +0100, Samuel Ortiz wrote: > > Hi Henri, > > > > On Thu, Feb 10, 2011 at 04:05:09PM +0200, Henri Bragge wrote: > > > --- > > > > > > How about this? "eap-" not absolutely necessary prefix for types > > > but I tried to avoid any confusion. > > > > > > PATCH v2: - dr

Re: [PATCH 4/6] config: Export a function to load service configs

2011-03-10 Thread Henri Bragge
Hi Samuel, On Thu, 2011-03-10 at 01:22 +0100, Samuel Ortiz wrote: > Hi Henri, > > On Thu, Feb 24, 2011 at 04:03:18PM +0200, Henri Bragge wrote: > > __connman_config_load_service function can be used by other parts of > > ConnMan core to load service configurations, which can later be used > > fo

Re: [PATCH 2/6] config: Fix service configuration update

2011-03-10 Thread Henri Bragge
Hi Samuel, On Thu, 2011-03-10 at 01:22 +0100, Samuel Ortiz wrote: > Hi Henri, > > On Thu, Feb 24, 2011 at 04:03:16PM +0200, Henri Bragge wrote: > > Service config should not be replaced after update. > > --- > > src/config.c |7 ++- > > 1 files changed, 6 insertions(+), 1 deletions(-) >

Re: [PATCH 5/6] Implement service provisioning via dbus

2011-03-10 Thread Henri Bragge
Hi Samuel, On Thu, 2011-03-10 at 01:22 +0100, Samuel Ortiz wrote: > Hi Henri, > > On Thu, Feb 24, 2011 at 04:03:19PM +0200, Henri Bragge wrote: > > +static DBusMessage *provision_service(DBusConnection *conn, DBusMessage > > *msg, > > + void *data) > > +{ > > +

[PATCH v2 5/6] Implement service provisioning via dbus

2011-03-10 Thread Henri Bragge
--- v2: - fix manager.ProvisionService dbus signature - handle malformed configurations properly - remove -EINPROGRESS special case in __connman_service_provision() error handling v1: - initial revision src/connman.h |1 + src/manager.c | 15 ++ src/service.c |

[PATCH] dhcp: Stop pending gdhcp client requests

2011-03-10 Thread Daniel Wagner
From: Daniel Wagner When remove_network is called there could be still a pending dhcp request in the dhcp client. Fixes BMC#13947 --- src/dhcp.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/dhcp.c b/src/dhcp.c index bedc555..6fda67d 100644 --- a/src/dhcp.c

Setting APN, Username, Phone Number on connmam 0.70

2011-03-10 Thread claudio
Hi, I'm using connman con 3g, how is the property to set APN, Username, and Password ? regs ___ connman mailing list connman@connman.net http://lists.connman.net/listinfo/connman