Fastbootd: network auto discovery

Change-Id: I91082f5832412e775244b3974c0ab00952905ad5
diff --git a/fastbootd/utils.h b/fastbootd/utils.h
index c714786..40c17c1 100644
--- a/fastbootd/utils.h
+++ b/fastbootd/utils.h
@@ -45,6 +45,8 @@
 int create_temp_file();
 ssize_t bulk_read(int bulk_out, char *buf, size_t length);
 ssize_t bulk_write(int bulk_in, const char *buf, size_t length);
+int service_start(const char *service_name);
+int service_stop(const char *service_name);
 
 #define ROUND_TO_PAGE(address,pagesize) ((address + pagesize - 1) & (~(pagesize - 1)))