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) {
[[Efl network client]]
legacy_prefix: ecore_con_client;
eo_prefix: efl_network_client_obj;
methods {
@property server {
[[Controls the server representing the socket the client has
connected to.]]
[[The server the client is connected to.]]
get {
}
values {

View File

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