ecore_con: fix time to live value name and type

The time to live hop limit should not be named loopback and have a type that
can actuall hold the number of hops. It already was always uint8 in the code.
Just fix the eo file.
This commit is contained in:
Stefan Schmidt 2016-11-18 12:35:02 +01:00
parent 371a3332ef
commit f77a602a09
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ class Efl.Net.Server.Udp (Efl.Net.Server.Fd) {
return: Eina.Error; [[0 on success, error code otherwise]]
}
values {
ttl: bool; [[Time to live]]
ttl: uint8; [[Time to live]]
}
}

View File

@ -122,7 +122,7 @@ class Efl.Net.Socket.Udp (Efl.Net.Socket.Fd) {
return: Eina.Error; [[0 on success, error code otherwise]]
}
values {
loopback: bool;
ttl: uint8; [[Time to live]]
}
}