docs: ecore_con: document missing structs

This commit is contained in:
Stefan Schmidt 2016-10-27 16:43:42 +02:00
parent b889beb0fc
commit 72f456ee82
4 changed files with 6 additions and 5 deletions

View File

@ -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.

View File

@ -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) {

View File

@ -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]]

View File

@ -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.]]
}