diff options
author | Doug Zongker <dougz@google.com> | 2014-06-26 15:35:36 -0700 |
---|---|---|
committer | Doug Zongker <dougz@google.com> | 2014-07-07 07:51:58 -0700 |
commit | 71fe584a1a7256c057267ae46a35f7c74d1d549e (patch) | |
tree | 4904bd0b580ec16321e1e509fc8ba0710db7a447 /adb/adb.h | |
parent | e61679c2fea0c26c1f40f9fd6cfb897a8bb057b0 (diff) | |
download | core-71fe584a1a7256c057267ae46a35f7c74d1d549e.tar.gz core-71fe584a1a7256c057267ae46a35f7c74d1d549e.tar.bz2 core-71fe584a1a7256c057267ae46a35f7c74d1d549e.zip |
add sideload-host mode to adb
The sideload-host mode turns the host into a server capable of sending
the device various pieces of the file on request, rather than
downloading it all in one transfer. It's used to support sideloading
OTA packages to devices without the need for them to hold the whole
package in RAM.
If the connected device doesn't support sideload-host mode, we fall
back to the older sideload connection.
Change-Id: I5adaedd8243dc3b76414bba0149879ca2bbf35fa
Diffstat (limited to 'adb/adb.h')
-rw-r--r-- | adb/adb.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ #define ADB_VERSION_MAJOR 1 // Used for help/version information #define ADB_VERSION_MINOR 0 // Used for help/version information -#define ADB_SERVER_VERSION 31 // Increment this when we want to force users to start a new adb server +#define ADB_SERVER_VERSION 32 // Increment this when we want to force users to start a new adb server typedef struct amessage amessage; typedef struct apacket apacket; |