docs: efl_net_server: add missing docs for efl_net_server

This commit is contained in:
Stefan Schmidt 2016-11-11 15:35:18 +01:00
parent c2754dc562
commit f3d1211266
4 changed files with 8 additions and 8 deletions

View File

@ -77,7 +77,7 @@ class Efl.Net.Server.Fd (Efl.Loop.Fd, Efl.Net.Server) {
]]
get { }
set {
return: bool (false); [[$true on success]]
return: bool (false); [[$true on success, $false otherwise]]
}
values {
close_on_exec: bool; [[If $true close on exec will be used, $false otherwise]]
@ -88,7 +88,7 @@ class Efl.Net.Server.Fd (Efl.Loop.Fd, Efl.Net.Server) {
[[Controls address reuse() using SO_REUSEADDR]]
get { }
set {
return: bool (false); [[$true on success]]
return: bool (false); [[$true on success, $false otherwise]]
}
values {
reuse_address: bool; [[If $true the server will reuse the address, $false otherwise]]
@ -99,7 +99,7 @@ class Efl.Net.Server.Fd (Efl.Loop.Fd, Efl.Net.Server) {
[[Controls port reuse() using SO_REUSEPORT (since linux 3.9)]]
get { }
set {
return: bool (false); [[$true on success]]
return: bool (false); [[$true on success, $false otherwise]]
}
values {
reuse_port: bool; [[If $true the server will reuse the port, $false otherwise]]

View File

@ -67,7 +67,7 @@ class Efl.Net.Server.Udp (Efl.Net.Server.Fd) {
params {
address: string @nonull; [[Multicast group address]]
}
return: Eina.Error;
return: Eina.Error; [[0 on success, error code otherwise]]
}
multicast_leave {
@ -78,7 +78,7 @@ class Efl.Net.Server.Udp (Efl.Net.Server.Fd) {
params {
address: string @nonull; [[Multicast group address]]
}
return: Eina.Error;
return: Eina.Error; [[0 on success, error code otherwise]]
}
multicast_groups_get {
@ -100,7 +100,7 @@ class Efl.Net.Server.Udp (Efl.Net.Server.Fd) {
return: Eina.Error; [[0 on success, error code otherwise]]
}
values {
loopback: bool;
loopback: bool; [[FIXME: should this be named ttl?]]
}
}

View File

@ -20,7 +20,7 @@ class Efl.Net.Server.Udp.Client (Efl.Object, Efl.Net.Socket) {
This will query the next pending datagram size, in
bytes. If no datagrams are pending, 0 is returned.
]]
return: size; [[size in bytes]]
return: size; [[Size in bytes]]
}
}

View File

@ -14,7 +14,7 @@ class Efl.Net.Server.Unix (Efl.Net.Server.Fd) {
By default it's false and you will get EADDRINUSE.
]]
values {
unlink_before_bind: bool; [[if $true, server will unlink() the path before bind() is called.]]
unlink_before_bind: bool; [[If $true, server will unlink() the path before bind() is called.]]
}
}
}