docs: efl_network: enhance the EO classes for client and server

This commit is contained in:
Stefan Schmidt 2016-04-26 11:53:50 +02:00
parent 9897cf495b
commit 727f58524a
2 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,10 @@
class Efl.Network.Client (Efl.Network.Base) { class Efl.Network.Client (Efl.Network.Base) {
[[Efl network client]]
legacy_prefix: ecore_con_client; legacy_prefix: ecore_con_client;
eo_prefix: efl_network_client_obj; eo_prefix: efl_network_client_obj;
methods { methods {
@property server { @property server {
[[Controls the server representing the socket the client has [[The server the client is connected to.]]
connected to.]]
get { get {
} }
values { values {

View File

@ -1,4 +1,5 @@
class Efl.Network.Server (Efl.Network.Base) { class Efl.Network.Server (Efl.Network.Base) {
[[Efl network server]]
legacy_prefix: ecore_con_server; legacy_prefix: ecore_con_server;
eo_prefix: efl_network_server; eo_prefix: efl_network_server;
methods { methods {
@ -62,6 +63,7 @@ class Efl.Network.Server (Efl.Network.Base) {
} }
} }
@property connection_type { @property connection_type {
[[Type of the server connection as defined in @Ecore.Con.Type]]
get { get {
legacy: null; legacy: null;
} }
@ -69,7 +71,7 @@ class Efl.Network.Server (Efl.Network.Base) {
legacy: null; legacy: null;
} }
values { values {
conn_type: Ecore.Con.Type; conn_type: Ecore.Con.Type; [[Connection type]]
} }
} }
} }