JP Abgrall | 2e5dd6e | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef __TRANSPORT_H |
| 18 | #define __TRANSPORT_H |
| 19 | |
Dan Albert | 020292b | 2015-02-18 18:03:26 -0800 | [diff] [blame] | 20 | #include <sys/types.h> |
| 21 | |
Yabin Cui | 3cf1b36 | 2017-03-10 16:01:01 -0800 | [diff] [blame] | 22 | #include <atomic> |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 23 | #include <condition_variable> |
Elliott Hughes | 801066a | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 24 | #include <deque> |
Josh Gao | 4e56250 | 2016-10-27 14:01:08 -0700 | [diff] [blame] | 25 | #include <functional> |
Yabin Cui | 2d4c198 | 2015-08-28 15:09:44 -0700 | [diff] [blame] | 26 | #include <list> |
Josh Gao | 22cb70b | 2016-08-18 22:00:12 -0700 | [diff] [blame] | 27 | #include <memory> |
Yabin Cui | 3cf1b36 | 2017-03-10 16:01:01 -0800 | [diff] [blame] | 28 | #include <mutex> |
Elliott Hughes | ab88242 | 2015-04-16 22:54:44 -0700 | [diff] [blame] | 29 | #include <string> |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 30 | #include <thread> |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 31 | #include <unordered_set> |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 32 | |
Josh Gao | 13781e8 | 2018-04-03 12:55:18 -0700 | [diff] [blame] | 33 | #include <android-base/thread_annotations.h> |
Elliott Hughes | 801066a | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 34 | #include <openssl/rsa.h> |
| 35 | |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 36 | #include "adb.h" |
| 37 | #include "adb_unique_fd.h" |
| 38 | |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 39 | typedef std::unordered_set<std::string> FeatureSet; |
| 40 | |
| 41 | const FeatureSet& supported_features(); |
| 42 | |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 43 | // Encodes and decodes FeatureSet objects into human-readable strings. |
| 44 | std::string FeatureSetToString(const FeatureSet& features); |
| 45 | FeatureSet StringToFeatureSet(const std::string& features_string); |
| 46 | |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 47 | // Returns true if both local features and |feature_set| support |feature|. |
| 48 | bool CanUseFeature(const FeatureSet& feature_set, const std::string& feature); |
| 49 | |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 50 | // Do not use any of [:;=,] in feature strings, they have special meaning |
| 51 | // in the connection banner. |
Todd Kennedy | 1e2f7dc | 2015-11-03 16:53:08 -0800 | [diff] [blame] | 52 | extern const char* const kFeatureShell2; |
| 53 | // The 'cmd' command is available |
| 54 | extern const char* const kFeatureCmd; |
Josh Gao | a2cf375 | 2016-12-05 17:11:34 -0800 | [diff] [blame] | 55 | extern const char* const kFeatureStat2; |
Josh Gao | 210b63f | 2017-02-22 17:07:01 -0800 | [diff] [blame] | 56 | // The server is running with libusb enabled. |
| 57 | extern const char* const kFeatureLibusb; |
Dan Albert | 27983bc | 2017-05-23 14:30:00 -0700 | [diff] [blame] | 58 | // The server supports `push --sync`. |
| 59 | extern const char* const kFeaturePushSync; |
David Pursell | 8da19a4 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 60 | |
Josh Gao | b39e415 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 61 | TransportId NextTransportId(); |
| 62 | |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 63 | // Abstraction for a non-blocking packet transport. |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 64 | struct Connection { |
| 65 | Connection() = default; |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 66 | virtual ~Connection() = default; |
| 67 | |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 68 | void SetTransportName(std::string transport_name) { |
| 69 | transport_name_ = std::move(transport_name); |
| 70 | } |
| 71 | |
| 72 | using ReadCallback = std::function<bool(Connection*, std::unique_ptr<apacket>)>; |
| 73 | void SetReadCallback(ReadCallback callback) { |
| 74 | CHECK(!read_callback_); |
| 75 | read_callback_ = callback; |
| 76 | } |
| 77 | |
| 78 | // Called after the Connection has terminated, either by an error or because Stop was called. |
| 79 | using ErrorCallback = std::function<void(Connection*, const std::string&)>; |
| 80 | void SetErrorCallback(ErrorCallback callback) { |
| 81 | CHECK(!error_callback_); |
| 82 | error_callback_ = callback; |
| 83 | } |
| 84 | |
| 85 | virtual bool Write(std::unique_ptr<apacket> packet) = 0; |
| 86 | |
| 87 | virtual void Start() = 0; |
| 88 | virtual void Stop() = 0; |
| 89 | |
| 90 | std::string transport_name_; |
| 91 | ReadCallback read_callback_; |
| 92 | ErrorCallback error_callback_; |
| 93 | }; |
| 94 | |
| 95 | // Abstraction for a blocking packet transport. |
| 96 | struct BlockingConnection { |
| 97 | BlockingConnection() = default; |
| 98 | BlockingConnection(const BlockingConnection& copy) = delete; |
| 99 | BlockingConnection(BlockingConnection&& move) = delete; |
| 100 | |
| 101 | // Destroy a BlockingConnection. Formerly known as 'Close' in atransport. |
| 102 | virtual ~BlockingConnection() = default; |
| 103 | |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 104 | // Read/Write a packet. These functions are concurrently called from a transport's reader/writer |
| 105 | // threads. |
| 106 | virtual bool Read(apacket* packet) = 0; |
| 107 | virtual bool Write(apacket* packet) = 0; |
| 108 | |
| 109 | // Terminate a connection. |
| 110 | // This method must be thread-safe, and must cause concurrent Reads/Writes to terminate. |
| 111 | // Formerly known as 'Kick' in atransport. |
| 112 | virtual void Close() = 0; |
| 113 | }; |
| 114 | |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 115 | struct BlockingConnectionAdapter : public Connection { |
| 116 | explicit BlockingConnectionAdapter(std::unique_ptr<BlockingConnection> connection); |
| 117 | |
| 118 | virtual ~BlockingConnectionAdapter(); |
| 119 | |
| 120 | virtual bool Write(std::unique_ptr<apacket> packet) override final; |
| 121 | |
| 122 | virtual void Start() override final; |
| 123 | virtual void Stop() override final; |
| 124 | |
Josh Gao | 13781e8 | 2018-04-03 12:55:18 -0700 | [diff] [blame] | 125 | bool started_ GUARDED_BY(mutex_) = false; |
| 126 | bool stopped_ GUARDED_BY(mutex_) = false; |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 127 | |
| 128 | std::unique_ptr<BlockingConnection> underlying_; |
Josh Gao | 13781e8 | 2018-04-03 12:55:18 -0700 | [diff] [blame] | 129 | std::thread read_thread_ GUARDED_BY(mutex_); |
| 130 | std::thread write_thread_ GUARDED_BY(mutex_); |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 131 | |
Josh Gao | 13781e8 | 2018-04-03 12:55:18 -0700 | [diff] [blame] | 132 | std::deque<std::unique_ptr<apacket>> write_queue_ GUARDED_BY(mutex_); |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 133 | std::mutex mutex_; |
| 134 | std::condition_variable cv_; |
| 135 | |
| 136 | std::once_flag error_flag_; |
| 137 | }; |
| 138 | |
| 139 | struct FdConnection : public BlockingConnection { |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 140 | explicit FdConnection(unique_fd fd) : fd_(std::move(fd)) {} |
| 141 | |
| 142 | bool Read(apacket* packet) override final; |
| 143 | bool Write(apacket* packet) override final; |
| 144 | |
| 145 | void Close() override; |
| 146 | |
| 147 | private: |
| 148 | unique_fd fd_; |
| 149 | }; |
| 150 | |
Josh Gao | 715fe60 | 2018-02-16 13:24:58 -0800 | [diff] [blame] | 151 | struct UsbConnection : public BlockingConnection { |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 152 | explicit UsbConnection(usb_handle* handle) : handle_(handle) {} |
| 153 | ~UsbConnection(); |
| 154 | |
| 155 | bool Read(apacket* packet) override final; |
| 156 | bool Write(apacket* packet) override final; |
| 157 | |
| 158 | void Close() override final; |
| 159 | |
| 160 | usb_handle* handle_; |
| 161 | }; |
| 162 | |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 163 | class atransport { |
Josh Gao | b39e415 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 164 | public: |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 165 | // TODO(danalbert): We expose waaaaaaay too much stuff because this was |
| 166 | // historically just a struct, but making the whole thing a more idiomatic |
| 167 | // class in one go is a very large change. Given how bad our testing is, |
| 168 | // it's better to do this piece by piece. |
| 169 | |
Josh Gao | b39e415 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 170 | atransport(ConnectionState state = kCsOffline) |
Josh Gao | 4d29974 | 2017-09-13 13:40:57 -0700 | [diff] [blame] | 171 | : id(NextTransportId()), connection_state_(state) { |
Tim Murray | ee7b44d | 2017-12-07 11:40:00 -0800 | [diff] [blame] | 172 | // Initialize protocol to min version for compatibility with older versions. |
| 173 | // Version will be updated post-connect. |
| 174 | protocol_version = A_VERSION_MIN; |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 175 | max_payload = MAX_PAYLOAD; |
| 176 | } |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 177 | virtual ~atransport() {} |
| 178 | |
Yabin Cui | 3cf1b36 | 2017-03-10 16:01:01 -0800 | [diff] [blame] | 179 | int Write(apacket* p); |
Yabin Cui | f2a9f9b | 2016-04-18 11:22:34 -0700 | [diff] [blame] | 180 | void Kick(); |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 181 | |
Yabin Cui | 3cf1b36 | 2017-03-10 16:01:01 -0800 | [diff] [blame] | 182 | // ConnectionState can be read by all threads, but can only be written in the main thread. |
| 183 | ConnectionState GetConnectionState() const; |
| 184 | void SetConnectionState(ConnectionState state); |
| 185 | |
Josh Gao | b39e415 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 186 | const TransportId id; |
Josh Gao | 4d29974 | 2017-09-13 13:40:57 -0700 | [diff] [blame] | 187 | size_t ref_count = 0; |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 188 | bool online = false; |
| 189 | TransportType type = kTransportAny; |
| 190 | |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 191 | std::unique_ptr<Connection> connection; |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 192 | |
| 193 | // Used to identify transports for clients. |
| 194 | char* serial = nullptr; |
| 195 | char* product = nullptr; |
| 196 | char* model = nullptr; |
| 197 | char* device = nullptr; |
| 198 | char* devpath = nullptr; |
Yabin Cui | f401ead | 2016-04-29 16:53:52 -0700 | [diff] [blame] | 199 | |
Josh Gao | 395b86a | 2018-01-28 20:32:46 -0800 | [diff] [blame] | 200 | bool IsTcpDevice() const { return type == kTransportLocal; } |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 201 | |
Josh Gao | eac2058 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 202 | #if ADB_HOST |
Josh Gao | 22cb70b | 2016-08-18 22:00:12 -0700 | [diff] [blame] | 203 | std::shared_ptr<RSA> NextKey(); |
Josh Gao | eac2058 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 204 | #endif |
Elliott Hughes | 801066a | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 205 | |
Josh Gao | 67ac379 | 2016-10-06 13:31:44 -0700 | [diff] [blame] | 206 | char token[TOKEN_SIZE] = {}; |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 207 | size_t failed_auth_attempts = 0; |
| 208 | |
Josh Gao | 3cd03be | 2018-02-28 14:44:23 -0800 | [diff] [blame] | 209 | std::string serial_name() const { return serial ? serial : "<unknown>"; } |
| 210 | std::string connection_state_name() const; |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 211 | |
| 212 | void update_version(int version, size_t payload); |
| 213 | int get_protocol_version() const; |
| 214 | size_t get_max_payload() const; |
| 215 | |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 216 | const FeatureSet& features() const { |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 217 | return features_; |
| 218 | } |
| 219 | |
| 220 | bool has_feature(const std::string& feature) const; |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 221 | |
| 222 | // Loads the transport's feature set from the given string. |
| 223 | void SetFeatures(const std::string& features_string); |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 224 | |
Yabin Cui | 2d4c198 | 2015-08-28 15:09:44 -0700 | [diff] [blame] | 225 | void AddDisconnect(adisconnect* disconnect); |
| 226 | void RemoveDisconnect(adisconnect* disconnect); |
| 227 | void RunDisconnects(); |
| 228 | |
David Pursell | c929c6f | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 229 | // Returns true if |target| matches this transport. A matching |target| can be any of: |
| 230 | // * <serial> |
| 231 | // * <devpath> |
| 232 | // * product:<product> |
| 233 | // * model:<model> |
| 234 | // * device:<device> |
| 235 | // |
| 236 | // If this is a local transport, serial will also match [tcp:|udp:]<hostname>[:port] targets. |
| 237 | // For example, serial "100.100.100.100:5555" would match any of: |
| 238 | // * 100.100.100.100 |
| 239 | // * tcp:100.100.100.100 |
| 240 | // * udp:100.100.100.100:5555 |
| 241 | // This is to make it easier to use the same network target for both fastboot and adb. |
| 242 | bool MatchesTarget(const std::string& target) const; |
| 243 | |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 244 | private: |
Yabin Cui | f2a9f9b | 2016-04-18 11:22:34 -0700 | [diff] [blame] | 245 | bool kicked_ = false; |
Yabin Cui | f2a9f9b | 2016-04-18 11:22:34 -0700 | [diff] [blame] | 246 | |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 247 | // A set of features transmitted in the banner with the initial connection. |
| 248 | // This is stored in the banner as 'features=feature0,feature1,etc'. |
| 249 | FeatureSet features_; |
| 250 | int protocol_version; |
| 251 | size_t max_payload; |
| 252 | |
Yabin Cui | 2d4c198 | 2015-08-28 15:09:44 -0700 | [diff] [blame] | 253 | // A list of adisconnect callbacks called when the transport is kicked. |
| 254 | std::list<adisconnect*> disconnects_; |
| 255 | |
Yabin Cui | 3cf1b36 | 2017-03-10 16:01:01 -0800 | [diff] [blame] | 256 | std::atomic<ConnectionState> connection_state_; |
Josh Gao | eac2058 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 257 | #if ADB_HOST |
Josh Gao | 22cb70b | 2016-08-18 22:00:12 -0700 | [diff] [blame] | 258 | std::deque<std::shared_ptr<RSA>> keys_; |
Josh Gao | eac2058 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 259 | #endif |
Elliott Hughes | 801066a | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 260 | |
Dan Albert | be8e54b | 2015-05-18 13:06:53 -0700 | [diff] [blame] | 261 | DISALLOW_COPY_AND_ASSIGN(atransport); |
| 262 | }; |
| 263 | |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 264 | /* |
| 265 | * Obtain a transport from the available transports. |
Elliott Hughes | 67943d1 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 266 | * If serial is non-null then only the device with that serial will be chosen. |
Josh Gao | b39e415 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 267 | * If transport_id is non-zero then only the device with that transport ID will be chosen. |
Elliott Hughes | 67943d1 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 268 | * If multiple devices/emulators would match, *is_ambiguous (if non-null) |
| 269 | * is set to true and nullptr returned. |
| 270 | * If no suitable transport is found, error is set and nullptr returned. |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 271 | */ |
Josh Gao | b39e415 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 272 | atransport* acquire_one_transport(TransportType type, const char* serial, TransportId transport_id, |
| 273 | bool* is_ambiguous, std::string* error_out, |
| 274 | bool accept_any_state = false); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 275 | void kick_transport(atransport* t); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 276 | void update_transports(void); |
| 277 | |
Josh Gao | 1e3bf73 | 2017-05-03 22:37:10 -0700 | [diff] [blame] | 278 | // Iterates across all of the current and pending transports. |
| 279 | // Stops iteration and returns false if fn returns false, otherwise returns true. |
| 280 | bool iterate_transports(std::function<bool(const atransport*)> fn); |
| 281 | |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 282 | void init_transport_registration(void); |
Casey Dahlin | 3122cdf | 2016-06-23 14:19:37 -0700 | [diff] [blame] | 283 | void init_mdns_transport_discovery(void); |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 284 | std::string list_transports(bool long_listing); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 285 | atransport* find_transport(const char* serial); |
Yabin Cui | 4d64fd8 | 2015-08-27 12:03:11 -0700 | [diff] [blame] | 286 | void kick_all_tcp_devices(); |
Josh Gao | 165460f | 2017-05-09 13:43:35 -0700 | [diff] [blame] | 287 | void kick_all_transports(); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 288 | |
| 289 | void register_usb_transport(usb_handle* h, const char* serial, |
| 290 | const char* devpath, unsigned writeable); |
| 291 | |
Casey Dahlin | 3122cdf | 2016-06-23 14:19:37 -0700 | [diff] [blame] | 292 | /* Connect to a network address and register it as a device */ |
| 293 | void connect_device(const std::string& address, std::string* response); |
| 294 | |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 295 | /* cause new transports to be init'd and added to the list */ |
| 296 | int register_socket_transport(int s, const char* serial, int port, int local); |
| 297 | |
Dan Albert | 9a50f4c | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 298 | // This should only be used for transports with connection_state == kCsNoPerm. |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 299 | void unregister_usb_transport(usb_handle* usb); |
| 300 | |
Josh Gao | 67b683a | 2017-05-16 15:02:45 -0700 | [diff] [blame] | 301 | bool check_header(apacket* p, atransport* t); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 302 | |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 303 | void close_usb_devices(); |
Josh Gao | 4e56250 | 2016-10-27 14:01:08 -0700 | [diff] [blame] | 304 | void close_usb_devices(std::function<bool(const atransport*)> predicate); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 305 | |
| 306 | void send_packet(apacket* p, atransport* t); |
| 307 | |
Josh Gao | 3212463 | 2017-08-14 18:57:54 -0700 | [diff] [blame] | 308 | asocket* create_device_tracker(bool long_output); |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 309 | |
JP Abgrall | 2e5dd6e | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 310 | #endif /* __TRANSPORT_H */ |