diff net.c @ 1840:3d0b20e9a187

Merge
author Michael Pavone <pavone@retrodev.com>
date Thu, 18 Apr 2019 19:48:04 -0700
parents 78abbabfd58d
children
line wrap: on
line diff
--- a/net.c	Thu Apr 18 19:47:50 2019 -0700
+++ b/net.c	Thu Apr 18 19:48:04 2019 -0700
@@ -19,6 +19,10 @@
 
 uint8_t get_host_address(iface_info *out)
 {
+#ifdef __ANDROID__
+	//TODO: write an implementation for Android
+	return 0;
+#else
 	struct ifaddrs *entries, *current, *localhost;
 	if (getifaddrs(&entries)) {
 		return 0;
@@ -46,4 +50,5 @@
 	}
 	freeifaddrs(entries);
 	return ret;
+#endif
 }
\ No newline at end of file