cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=26ad8d77684593c2033f90d636d33d9d5e74f83a

commit 26ad8d77684593c2033f90d636d33d9d5e74f83a
Author: Xavi Artigas <xavierarti...@yahoo.es>
Date:   Fri Apr 6 11:16:27 2018 +0200

    Efl.Net.Control.Access_Point_* (from Efl.Net.Control.Access_Point.*)
    
    Ref https://phab.enlightenment.org/T6847
    
    Reviewed-by: Cedric Bail <ced...@osg.samsung.com>
---
 src/lib/ecore_con/efl_net_control_access_point.eo | 42 +++++++++++------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/lib/ecore_con/efl_net_control_access_point.eo 
b/src/lib/ecore_con/efl_net_control_access_point.eo
index fd5483a00e..b30328e5f2 100644
--- a/src/lib/ecore_con/efl_net_control_access_point.eo
+++ b/src/lib/ecore_con/efl_net_control_access_point.eo
@@ -1,4 +1,4 @@
-enum Efl.Net.Control.Access_Point.State {
+enum Efl.Net.Control.Access_Point_State {
     [[Provides the access point state.
 
       @since 1.19
@@ -12,7 +12,7 @@ enum Efl.Net.Control.Access_Point.State {
     failure, [[The connection attempt failed, 
@Efl.Net.Control.Access_Point.error will provide more details]]
 }
 
-enum Efl.Net.Control.Access_Point.Error {
+enum Efl.Net.Control.Access_Point_Error {
     [[The reason for the connection error.
 
       @since 1.19
@@ -25,7 +25,7 @@ enum Efl.Net.Control.Access_Point.Error {
     login_failed, [[Login or authentication information was incorrect, 
agent_request_input event may be emitted.]]
 }
 
-enum Efl.Net.Control.Access_Point.Security {
+enum Efl.Net.Control.Access_Point_Security {
     [[Bitwise-able securities supported by an access point.
 
       @since 1.19
@@ -37,7 +37,7 @@ enum Efl.Net.Control.Access_Point.Security {
     ieee802_1x = (1 << 3), [[IEEE 802.1X]]
 }
 
-enum Efl.Net.Control.Access_Point.Ipv4_Method {
+enum Efl.Net.Control.Access_Point_Ipv4_Method {
     [[The method used to configure IPv4
 
       @since 1.19
@@ -48,7 +48,7 @@ enum Efl.Net.Control.Access_Point.Ipv4_Method {
     unset, [[Only to be used with 
@Efl.Net.Control.Access_Point.configuration_ipv4]]
 }
 
-enum Efl.Net.Control.Access_Point.Ipv6_Method {
+enum Efl.Net.Control.Access_Point_Ipv6_Method {
     [[The method used to configure IPv6
 
       @since 1.19
@@ -63,7 +63,7 @@ enum Efl.Net.Control.Access_Point.Ipv6_Method {
     unset, [[Only to be used with 
@Efl.Net.Control.Access_Point.configuration_ipv6]]
 }
 
-enum Efl.Net.Control.Access_Point.Proxy_Method {
+enum Efl.Net.Control.Access_Point_Proxy_Method {
     [[The method used to configure Proxies.
 
       @since 1.19
@@ -141,7 +141,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             ]]
             get { }
             values {
-                state: Efl.Net.Control.Access_Point.State; [[Access point 
state]]
+                state: Efl.Net.Control.Access_Point_State; [[Access point 
state]]
             }
         }
 
@@ -149,7 +149,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             [[If the access point is in error state, this states the error.]]
             get { }
             values {
-                error: Efl.Net.Control.Access_Point.Error; [[Access point 
error]]
+                error: Efl.Net.Control.Access_Point_Error; [[Access point 
error]]
             }
         }
 
@@ -252,7 +252,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             [[Security options such as WEP, WPS, PSK or none (open).]]
             get { }
             values {
-                security: Efl.Net.Control.Access_Point.Security; [[Bitwise OR 
of security supported by this access point]]
+                security: Efl.Net.Control.Access_Point_Security; [[Bitwise OR 
of security supported by this access point]]
             }
         }
 
@@ -308,7 +308,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             ]]
             get { }
             values {
-                method: Efl.Net.Control.Access_Point.Ipv4_Method; [[IPv4 
method]]
+                method: Efl.Net.Control.Access_Point_Ipv4_Method; [[IPv4 
method]]
                 address: string; [[IPv4 address]]
                 netmask: string; [[IPv4 netmask]]
                 gateway: string; [[IPv4 gateway]]
@@ -325,7 +325,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             ]]
             get { }
             values {
-                method: Efl.Net.Control.Access_Point.Ipv6_Method; [[IPv6 
method]]
+                method: Efl.Net.Control.Access_Point_Ipv6_Method; [[IPv6 
method]]
                 address: string; [[IPv6 address]]
                 prefix_length: uint8; [[IPv6 prefix length]]
                 netmask: string; [[IPv6 netmask]]
@@ -343,10 +343,10 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             ]]
             get { }
             values {
-                method: Efl.Net.Control.Access_Point.Proxy_Method; [[Proxy 
method]]
-                url: string; [[If 
@Efl.Net.Control.Access_Point.Proxy_Method.auto, then states the URL to use for 
proxy auto-configuration]]
-                servers: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point.Proxy_Method.manual, then states the URI with 
proxy servers to use, like "http://proxy.domain.com:911";]]
-                excludes: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point.Proxy_Method.manual, then states the hosts or 
patterns to exclude from proxy access, such as "localhost", ".domain.com", or 
"10.0.0.0..."]]
+                method: Efl.Net.Control.Access_Point_Proxy_Method; [[Proxy 
method]]
+                url: string; [[If 
@Efl.Net.Control.Access_Point_Proxy_Method.auto, then states the URL to use for 
proxy auto-configuration]]
+                servers: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point_Proxy_Method.manual, then states the URI with 
proxy servers to use, like "http://proxy.domain.com:911";]]
+                excludes: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point_Proxy_Method.manual, then states the hosts or 
patterns to exclude from proxy access, such as "localhost", ".domain.com", or 
"10.0.0.0..."]]
             }
         }
 
@@ -410,7 +410,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             set { }
             get { }
             values {
-                method: Efl.Net.Control.Access_Point.Ipv4_Method; [[IPv4 
method]]
+                method: Efl.Net.Control.Access_Point_Ipv4_Method; [[IPv4 
method]]
                 address: string; [[IPv4 address]]
                 netmask: string; [[IPv4 netmask]]
                 gateway: string; [[IPv4 gateway]]
@@ -429,7 +429,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             set { }
             get { }
             values {
-                method: Efl.Net.Control.Access_Point.Ipv6_Method; [[IPv6 
method]]
+                method: Efl.Net.Control.Access_Point_Ipv6_Method; [[IPv6 
method]]
                 address: string; [[IPv6 address]]
                 prefix_length: uint8; [[IPv6 prefix length]]
                 netmask: string; [[IPv6 netmask]]
@@ -449,10 +449,10 @@ class Efl.Net.Control.Access_Point (Efl.Loop.Consumer) {
             set { }
             get { }
             values {
-                method: Efl.Net.Control.Access_Point.Proxy_Method; [[Proxy 
method]]
-                url: string; [[If 
@Efl.Net.Control.Access_Point.Proxy_Method.auto, then states the URL to use for 
proxy auto-configuration]]
-                servers: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point.Proxy_Method.manual, then states the URI with 
proxy servers to use, like "http://proxy.domain.com:911";]]
-                excludes: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point.Proxy_Method.manual, then states the hosts or 
patterns to exclude from proxy access, such as "localhost", ".domain.com", or 
"10.0.0.0..."]]
+                method: Efl.Net.Control.Access_Point_Proxy_Method; [[Proxy 
method]]
+                url: string; [[If 
@Efl.Net.Control.Access_Point_Proxy_Method.auto, then states the URL to use for 
proxy auto-configuration]]
+                servers: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point_Proxy_Method.manual, then states the URI with 
proxy servers to use, like "http://proxy.domain.com:911";]]
+                excludes: iterator<string> @owned; [[If 
@Efl.Net.Control.Access_Point_Proxy_Method.manual, then states the hosts or 
patterns to exclude from proxy access, such as "localhost", ".domain.com", or 
"10.0.0.0..."]]
             }
         }
     }

-- 


Reply via email to