Send connman mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.01.org/mailman/listinfo/connman
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of connman digest..."


Today's Topics:

   1. [PATCH 3/3] main.conf: Unify spelling of ConnMan
      (Peter Meerwald-Stadler)
   2. [PATCH 1/3] README: mention address conflict detection, RFC
      5227 (Peter Meerwald-Stadler)
   3. [PATCH 2/3] main.conf: Document AddressConflictDetection
      option (Peter Meerwald-Stadler)
   4. [PATCH 1/2] rtnl: Bail out if interface name is blacklisted
      (Peter Meerwald-Stadler)
   5. [PATCH 2/2] wifi: Make wfd_service_registered variable static
      (Peter Meerwald-Stadler)


----------------------------------------------------------------------

Message: 1
Date: Tue, 29 May 2018 21:41:11 +0200
From: Peter Meerwald-Stadler <[email protected]>
To: Daniel Wagner <[email protected]>
Cc: [email protected],       Peter Meerwald-Stadler <[email protected]>
Subject: [PATCH 3/3] main.conf: Unify spelling of ConnMan
Message-ID: <[email protected]>

connman -> ConnMan
Connman -> ConnMan

Signed-off-by: Peter Meerwald-Stadler <[email protected]>
---
 src/main.conf | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main.conf b/src/main.conf
index 7347e050..14965e12 100644
--- a/src/main.conf
+++ b/src/main.conf
@@ -64,17 +64,17 @@
 
 # List of blacklisted network interfaces separated by ",".
 # Found interfaces will be compared to the list and will
-# not be handled by connman, if their first characters
+# not be handled by ConnMan, if their first characters
 # match any of the list entries. Default value is
 # vmnet,vboxnet,virbr,ifb,ve-,vb-.
 # NetworkInterfaceBlacklist = vmnet,vboxnet,virbr,ifb,ve-,vb-
 
-# Allow connman to change the system hostname. This can
+# Allow ConnMan to change the system hostname. This can
 # happen for example if we receive DHCP hostname option.
 # Default value is true.
 # AllowHostnameUpdates = true
 
-# Allow connman to change the system domainname. This can
+# Allow ConnMan to change the system domainname. This can
 # happen for example if we receive DHCP domainname option.
 # Default value is true.
 # AllowDomainnameUpdates = true
@@ -133,7 +133,7 @@
 # AlwaysConnectedTechnologies =
 
 # Enable auto connection of services in roaming.
-# If this setting is false, roaming services are not auto-connected by Connman.
+# If this setting is false, roaming services are not auto-connected by ConnMan.
 # Default value is false.
 # AutoConnectRoamingServices = false
 
-- 
2.17.0



------------------------------

Message: 2
Date: Tue, 29 May 2018 21:41:09 +0200
From: Peter Meerwald-Stadler <[email protected]>
To: Daniel Wagner <[email protected]>
Cc: [email protected],       Peter Meerwald-Stadler <[email protected]>
Subject: [PATCH 1/3] README: mention address conflict detection, RFC
        5227
Message-ID: <[email protected]>

Signed-off-by: Peter Meerwald-Stadler <[email protected]>
---
 README | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README b/README
index f9610e13..f16b9ec0 100644
--- a/README
+++ b/README
@@ -11,6 +11,7 @@ The following features are built-in into Connection Manager:
        - Generic plugin infrastructure
        - Device and network abstraction (with basic storage support)
        - IPv4, IPv4-LL (link-local) and DHCP
+       - IPv4 address conflict detection (ACD) according to RFC 5227
        - IPv6, DHCPv6 and 6to4 tunnels
        - Advanced routing and DNS configuration
        - Built-in DNS proxy and intelligent caching
-- 
2.17.0



------------------------------

Message: 3
Date: Tue, 29 May 2018 21:41:10 +0200
From: Peter Meerwald-Stadler <[email protected]>
To: Daniel Wagner <[email protected]>
Cc: [email protected],       Peter Meerwald-Stadler <[email protected]>
Subject: [PATCH 2/3] main.conf: Document AddressConflictDetection
        option
Message-ID: <[email protected]>

If this setting is true, ConnMan will send probe ARP packets to see
if an IPv4 address is already in use before assigning the address
to an interface (in accordance with RFC 5227).

Signed-off-by: Peter Meerwald-Stadler <[email protected]>
---
 src/main.conf | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/main.conf b/src/main.conf
index a7022aa6..7347e050 100644
--- a/src/main.conf
+++ b/src/main.conf
@@ -136,3 +136,10 @@
 # If this setting is false, roaming services are not auto-connected by Connman.
 # Default value is false.
 # AutoConnectRoamingServices = false
+
+# Enable address conflict detection
+# If this setting is true, ConnMan will send probe ARP packets to see
+# if an IPv4 address is already in use before assigning the address
+# to an interface (in accordance with RFC 5227).
+# Default value is false.
+# AddressConflictDetection = false
-- 
2.17.0



------------------------------

Message: 4
Date: Wed, 30 May 2018 00:29:52 +0200
From: Peter Meerwald-Stadler <[email protected]>
To: Daniel Wagner <[email protected]>
Cc: [email protected],       Peter Meerwald-Stadler <[email protected]>
Subject: [PATCH 1/2] rtnl: Bail out if interface name is blacklisted
Message-ID: <[email protected]>

blacklisting an interface doesn't work for me after
commit d81f21e3 (rtnl: retry to add ether interface after renaming)

Signed-off-by: Peter Meerwald-Stadler <[email protected]>
---
 src/rtnl.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/rtnl.c b/src/rtnl.c
index 8080ff01..cba5ef7a 100644
--- a/src/rtnl.c
+++ b/src/rtnl.c
@@ -127,6 +127,7 @@ static void read_uevent(struct interface_data *interface)
        if (ether_blacklisted(name)) {
                interface->service_type = CONNMAN_SERVICE_TYPE_UNKNOWN;
                interface->device_type = CONNMAN_DEVICE_TYPE_UNKNOWN;
+               goto out;
        } else {
                interface->service_type = CONNMAN_SERVICE_TYPE_ETHERNET;
                interface->device_type = CONNMAN_DEVICE_TYPE_ETHERNET;
-- 
2.17.0



------------------------------

Message: 5
Date: Wed, 30 May 2018 00:29:53 +0200
From: Peter Meerwald-Stadler <[email protected]>
To: Daniel Wagner <[email protected]>
Cc: [email protected],       Peter Meerwald-Stadler <[email protected]>
Subject: [PATCH 2/2] wifi: Make wfd_service_registered variable static
Message-ID: <[email protected]>

Signed-off-by: Peter Meerwald-Stadler <[email protected]>
---
 plugins/wifi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/wifi.c b/plugins/wifi.c
index dc08c6af..5b050469 100644
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -167,7 +167,7 @@ static GList *iface_list = NULL;
 
 static GList *pending_wifi_device = NULL;
 static GList *p2p_iface_list = NULL;
-bool wfd_service_registered = false;
+static bool wfd_service_registered = false;
 
 static void start_autoscan(struct connman_device *device);
 static int tech_set_tethering(struct connman_technology *technology,
-- 
2.17.0



------------------------------

Subject: Digest Footer

_______________________________________________
connman mailing list
[email protected]
https://lists.01.org/mailman/listinfo/connman


------------------------------

End of connman Digest, Vol 31, Issue 21
***************************************

Reply via email to