summaryrefslogtreecommitdiff
path: root/fastboot/tcp.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Allow fuzzy_fastboot test devices over internetsteven_fann2020-01-211-0/+5
| | | | | | | Bug: 144667236 Test: fuzzy_fastboot --serial=192.168.1.104:5555 --gtest_filter=*Logical* Change-Id: I02e62f706d0a3a19a9b7b56788abe05759d2d63d
* Fix google-explicit-constructor warnings.Chih-Hung Hsieh2016-04-291-1/+1
| | | | | Bug: 28341362 Change-Id: I4504e98a8db31e0edcbe63c23f9af43eb13e9d86
* fastboot: fix TCP protocol version check.David Pursell2016-02-171-3/+6
| | | | | | | | | | | | | | Currently the TCP handshake fails if the device TCP protocol version doesn't match the host exactly, but the protocol is supposed to allow for forwards compatibility by accepting any protocol version >= itself. That way the other side can potentially lower its protocol to match and keep going. This CL fixes the protocol version check and adds corresponding unit tests. Bug: http://b/27220700 Change-Id: Ib17f0a55eb910105a27609bc94bf76a30442e92e
* fastboot: add TCP protocol.David Pursell2016-02-031-0/+196
This CL implements a TCP protocol for use with fastboot. Protocol description is given in fastboot_protocol.txt, some examples of expected behavior can also be found in tcp_test.cpp. Usage is: fastboot -s tcp:<hostname>[:port] <command> Bug: http://b/26558551 Change-Id: If53a514a534489c617db32c4fea8819949121282