Re: [PATCH v4 07/13] Add manpage for connmanctl client.

2012-09-11 Thread Patrik Flykt
Hi, On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > From: Ceara Chewning > > This includes the man page detailing how to use the new CLI. > --- > doc/connmanctl.1 | 197 > ++ > 1 file changed, 197 insertions(+) > create mod

Re: [PATCH v4 04/13] Add connman monitor files.

2012-09-11 Thread Patrik Flykt
Hi, On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > From: Ceara Chewning > > The client is able to be run as a monitor to connman. When connmanctl is > started with the monitor option, it will wait for any signals from connman > and display them in the terminal. It is useful if

Re: [PATCH v4 05/13] Add interactive mode files.

2012-09-11 Thread Patrik Flykt
Hi, On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > When the client is started with the interactive option, it should drop into an > interactive shell mode. These files handle all the interactive commands > using readline, and provide quick functionality that is similar to plain >

Re: [PATCH 0/3] Return interface Vendor and Model information

2012-09-11 Thread Jukka Rissanen
Hi Marcel, On 09/11/2012 03:41 PM, Marcel Holtmann wrote: Hi Jukka, this patch returns interface Vendor and Model information in service Ethernet dict. This information is useful in UI if there are more than one wifi cards in the system. In this case the user is presented multiple services wit

Re: [PATCH] Add commands file.

2012-09-11 Thread Patrik Flykt
Hi, This patch should probably be about number 5 in the patch series as the current interactive mode patch number 5 uses these functions. On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > This file holds all of the command handling that connmanctl uses. Both the > main program and

Re: [PATCH v4 03/13] Add data_manager files.

2012-09-11 Thread Patrik Flykt
Hi, On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > The data manager connects/disconnects with services, lists multiple properties > of connman, and sets manager properties. The function get_message is important > as it is used to send any method request to connman, and returns th

Re: [PATCH v4 02/13] Add technology files.

2012-09-11 Thread Patrik Flykt
Hi, On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > From: Ceara Chewning > > The technology functions handle connman's technology features, such as > scanning, > parsing, setting and receiving technology properties. With match_tech_name a > user can verify if any given technolo

Re: [PATCH v4 01/13] Add service files for new client.

2012-09-11 Thread Patrik Flykt
Hi, On Fri, 2012-09-07 at 17:26 -0700, Tudor Marcu wrote: > The services section handles all of the dbus parsing and appending in order > to manipulate services. The function set_service_property is responsible for > configuring properties that contain an array or dictionary. Functions a

Re: [PATCH 0/3] Return interface Vendor and Model information

2012-09-11 Thread Marcel Holtmann
Hi Jukka, > this patch returns interface Vendor and Model information in > service Ethernet dict. > This information is useful in UI if there are more than one > wifi cards in the system. In this case the user is presented > multiple services with the same name without any means to > determine wha

[PATCH] ipconfig: Catch interface name changes

2012-09-11 Thread Jukka Rissanen
Update the ipdevice interface name if it is changed by udev. --- src/ipconfig.c | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/ipconfig.c b/src/ipconfig.c index 05997bc..4456fc6 100644 --- a/src/ipconfig.c +++ b/src/ipconfig.c @@ -637,8 +637,19 @@ void __co

Re: does Connman handle multiple connections at once?

2012-09-11 Thread Patrik Flykt
Hi, On Tue, 2012-09-11 at 00:34 -0700, Stan Hu wrote: > I did try putting "PreferredTechnologies=**ethernet,wifi" I hope you didn't add those '**' in the main.conf file. > but still only one connection was established. This is a possible outcome, yes. Both ethernet and wifi will be con

Re: [PATCH 0/3] Fixes for various wispr issues

2012-09-11 Thread Patrik Flykt
On Fri, 2012-09-07 at 11:00 +0300, patrik.fl...@linux.intel.com wrote: > From: Patrik Flykt > > Hi, > > This patch set implements fixes for various wispr related issues. All three patches applied. Patrik ___ connman mailing list connm

[PATCH 1/3] inet: Get interface vendor and model from udev

2012-09-11 Thread Jukka Rissanen
--- Makefile.am |2 +- configure.ac |5 + src/connman.h |1 + src/inet.c| 30 ++ 4 files changed, 37 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 5c5b95c..514b0a2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -86,7

[PATCH 3/3] doc: Describe the Ethernet Vendor and Model properties

2012-09-11 Thread Jukka Rissanen
--- doc/service-api.txt | 16 1 file changed, 16 insertions(+) diff --git a/doc/service-api.txt b/doc/service-api.txt index f72df8b..10f3bd1 100644 --- a/doc/service-api.txt +++ b/doc/service-api.txt @@ -486,3 +486,19 @@ Properties string State [readonly]

[PATCH 2/3] ipconfig: Get interface vendor and model

2012-09-11 Thread Jukka Rissanen
The vendor and model information is returned in service Ethernet property. --- src/ipconfig.c | 16 1 file changed, 16 insertions(+) diff --git a/src/ipconfig.c b/src/ipconfig.c index e2b6576..05997bc 100644 --- a/src/ipconfig.c +++ b/src/ipconfig.c @@ -85,6 +85,9 @@ struct con

[PATCH 0/3] Return interface Vendor and Model information

2012-09-11 Thread Jukka Rissanen
Hi, this patch returns interface Vendor and Model information in service Ethernet dict. This information is useful in UI if there are more than one wifi cards in the system. In this case the user is presented multiple services with the same name without any means to determine what interface the se

Re: does Connman handle multiple connections at once?

2012-09-11 Thread Stan Hu
Jukka, I did try putting "PreferredTechnologies=**ethernet,wifi", but still only one connection was established. Is there a way to force multiple connections at once? I'm trying to understand the source code, and it's not obvious to me where the code decides only to retrieve a DHCP address from o

Re: does Connman handle multiple connections at once?

2012-09-11 Thread Jukka Rissanen
Hi Stan, On 09/11/2012 04:54 AM, Stan Hu wrote: I apologize if this is a commonly asked question, but I've been searching all over the place for confirmation: Does any version of Connman handle multiple connections at once? I ask because I have both eth0 and wlan0 both configured as AutoConnect