protobuf_grpc: google serializing and RPC library

protobuf : 3.9.1
grpc     : 1.24.0

Issue #190
This commit is contained in:
Pirmin Duss
2019-09-20 11:18:30 +02:00
committed by Norman Feske
parent f957aa538f
commit 5587d78e89
37 changed files with 2018 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
diff --git a/third_party/genode/if_indextoname.c b/third_party/genode/if_indextoname.c
new file mode 100644
index 0000000000..9ea67cee0c
--- /dev/null
+++ b/third_party/genode/if_indextoname.c
@@ -0,0 +1,6 @@
+char * if_indextoname(unsigned int ifindex, char *ifname)
+{
+ const char* name = "eth0";
+ ifname = name;
+ return ifname;
+}