stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=72f456ee82d5bfcbb5bbb56c8a247804897c4481
commit 72f456ee82d5bfcbb5bbb56c8a247804897c4481 Author: Stefan Schmidt <[email protected]> Date: Thu Oct 27 16:43:42 2016 +0200 docs: ecore_con: document missing structs --- src/lib/ecore_con/ecore_con_eet_base.eo | 4 ++-- src/lib/ecore_con/efl_net_dialer_websocket.eo | 4 ++-- src/lib/ecore_con/efl_net_http_types.eot | 2 +- src/lib/ecore_con/efl_network.eo | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_eet_base.eo b/src/lib/ecore_con/ecore_con_eet_base.eo index 250a785..1b28ef9 100644 --- a/src/lib/ecore_con/ecore_con_eet_base.eo +++ b/src/lib/ecore_con/ecore_con_eet_base.eo @@ -3,8 +3,8 @@ import efl_network_server; type @extern Ecore_Con_Eet_Data_Cb: __undefined_type; /* FIXME: function pointers not supported. */ type @extern Ecore_Con_Eet_Raw_Data_Cb: __undefined_type; /* FIXME: function pointers not supported. */ -struct @extern Eet.Data.Descriptor; -struct Ecore.Con.Reply; +struct @extern Eet.Data.Descriptor; [[Eet data descriptor data structure]] +struct Ecore.Con.Reply; [[Ecore connection reply data structure]] class Ecore.Con.Eet.Base (Efl.Object) { [[Ecore Connection Eet Base class. diff --git a/src/lib/ecore_con/efl_net_dialer_websocket.eo b/src/lib/ecore_con/efl_net_dialer_websocket.eo index 914a29f..7dafbd9 100644 --- a/src/lib/ecore_con/efl_net_dialer_websocket.eo +++ b/src/lib/ecore_con/efl_net_dialer_websocket.eo @@ -43,8 +43,8 @@ struct Efl.Net.Dialer.Websocket.Closed_Reason { @since 1.19 ]] - reason: Efl.Net.Dialer.Websocket.Close_Reason; - message: string; + reason: Efl.Net.Dialer.Websocket.Close_Reason; [[Closing reason]] + message: string; [[Textual closing reason message]] } class Efl.Net.Dialer.Websocket (Efl.Loop_User, Efl.Net.Dialer) { diff --git a/src/lib/ecore_con/efl_net_http_types.eot b/src/lib/ecore_con/efl_net_http_types.eot index 328f59d..f2e5aaa 100644 --- a/src/lib/ecore_con/efl_net_http_types.eot +++ b/src/lib/ecore_con/efl_net_http_types.eot @@ -123,7 +123,7 @@ struct Efl.Net.Http.Header { described in the value "HTTP/1.1 200 Ok". ]] key: string; [[for response headers this may be null to indicate a new request response, then the value will be a line such as 'HTTP/1.1 200 Ok']] - value: string; + value: string; [[Header value]] } var Efl.Net.Http.Error.BAD_CONTENT_ENCODING: Eina.Error; [[HTTP error: bad content encoding]] diff --git a/src/lib/ecore_con/efl_network.eo b/src/lib/ecore_con/efl_network.eo index 88140b1..0d4ec34 100644 --- a/src/lib/ecore_con/efl_network.eo +++ b/src/lib/ecore_con/efl_network.eo @@ -184,6 +184,7 @@ abstract Efl.Network (Efl.Object) { /* FIXME: Should actually be a binbuf. */ struct Ecore.Con.Event_Data.Received { + [[Ecore connection event data received data structure]] data: void_ptr; [[The data that got sent.]] size: int; [[The length of the data sent.]] } --
