summaryrefslogtreecommitdiffstats
path: root/minadbd/minadbd.cpp
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-08-30 23:11:58 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-08-30 23:11:58 +0200
commit48019cf71a42cef86628a2e452b4ef4c5040b6fd (patch)
treeb57d06765a238e7d5d4cc2876777d0cf27fdf335 /minadbd/minadbd.cpp
parentMerge "Fix clang-tidy warnings in bootable/recovery." am: 89bf2bdc85 am: 9968866e86 am: d987fe1d57 (diff)
parentMerge "minadbd: rename adb_server_main to minadbd_main." am: 818394869d am: aad4cef0f3 (diff)
downloadandroid_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.gz
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.bz2
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.lz
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.xz
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.zst
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.zip
Diffstat (limited to '')
-rw-r--r--minadbd/minadbd.cpp (renamed from minadbd/adb_main.cpp)4
1 files changed, 3 insertions, 1 deletions
diff --git a/minadbd/adb_main.cpp b/minadbd/minadbd.cpp
index 8e581c2a9..349189cc7 100644
--- a/minadbd/adb_main.cpp
+++ b/minadbd/minadbd.cpp
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#include "minadbd.h"
+
#include <errno.h>
#include <signal.h>
#include <stdio.h>
@@ -23,7 +25,7 @@
#include "adb_auth.h"
#include "transport.h"
-int adb_server_main(int is_daemon, int server_port, int /* reply_fd */) {
+int minadbd_main() {
adb_device_banner = "sideload";
signal(SIGPIPE, SIG_IGN);