|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT/LWIP PATCH 1/1] Add servent and protoent
This patch adds the definition of servent and protoent to netdb.h since it is
missing from lwip/netdb.h .
Signed-off-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
---
include/netdb.h | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/include/netdb.h b/include/netdb.h
index 5e2eb60..6ba6aad 100644
--- a/include/netdb.h
+++ b/include/netdb.h
@@ -1 +1,14 @@
#include <compat/posix/netdb.h>
+
+struct servent {
+ char *s_name; /* official service name */
+ char **s_aliases; /* alias list */
+ int s_port; /* port # */
+ char *s_proto; /* protocol to use */
+};
+
+struct protoent {
+ char *p_name; /* official protocol name */
+ char **p_aliases; /* alias list */
+ int p_proto; /* protocol # */
+};
--
2.21.0
_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |