summaryrefslogtreecommitdiffstats
path: root/adb/adb.h
diff options
context:
space:
mode:
Diffstat (limited to 'adb/adb.h')
-rw-r--r--adb/adb.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/adb/adb.h b/adb/adb.h
index 13ca4d7e0..e6af780c4 100644
--- a/adb/adb.h
+++ b/adb/adb.h
@@ -158,7 +158,10 @@ asocket* create_jdwp_tracker_service_socket();
158unique_fd create_jdwp_connection_fd(int jdwp_pid); 158unique_fd create_jdwp_connection_fd(int jdwp_pid);
159#endif 159#endif
160 160
161int handle_forward_request(const char* service, atransport* transport, int reply_fd); 161bool handle_forward_request(const char* service, atransport* transport, int reply_fd);
162bool handle_forward_request(const char* service,
163 std::function<atransport*(std::string* error)> transport_acquirer,
164 int reply_fd);
162 165
163/* packet allocator */ 166/* packet allocator */
164apacket* get_apacket(void); 167apacket* get_apacket(void);