From b911cf0af43718a6dedb06561e787ba3bdbdfe8b Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 20 May 2014 08:51:15 -0700 Subject: [PATCH] Fix win32 implicit declaration of function socket_network_client_timeout. Change-Id: Ic6070855a21920384c555c9c82b9a2e4a776cbae --- adb/sysdeps.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/adb/sysdeps.h b/adb/sysdeps.h index 4033b7220..ba4306f8c 100644 --- a/adb/sysdeps.h +++ b/adb/sysdeps.h @@ -169,6 +169,8 @@ extern void* load_file(const char* pathname, unsigned* psize); /* normally provided by */ extern int socket_loopback_client(int port, int type); extern int socket_network_client(const char *host, int port, int type); +extern int socket_network_client_timeout(const char *host, int port, int type, + int timeout); extern int socket_loopback_server(int port, int type); extern int socket_inaddr_any_server(int port, int type);