/usr/include/usbredirproto.h is in libusbredirparser-dev 0.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | /* usbredirproto.h usb redirection protocol definitions
Copyright 2010-2011 Red Hat, Inc.
Red Hat Authors:
Hans de Goede <hdegoede@redhat.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __USBREDIRPROTO_H
#define __USBREDIRPROTO_H
/* PACK macros borrowed from spice-protocol */
#ifdef __GNUC__
#define ATTR_PACKED __attribute__ ((__packed__))
#ifdef __MINGW32__
#pragma pack(push,1)
#endif
#else
#pragma pack(push)
#pragma pack(1)
#define ATTR_PACKED
#pragma warning(disable:4200)
#pragma warning(disable:4103)
#endif
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
#define USBREDIR_VERSION 0x000700 /* 0.7 [.0] */
enum {
usb_redir_success,
usb_redir_cancelled, /* The transfer was cancelled */
usb_redir_inval, /* Invalid packet type / length / ep, etc. */
usb_redir_ioerror, /* IO error */
usb_redir_stall, /* Stalled */
usb_redir_timeout, /* Request timed out */
usb_redir_babble, /* The device has "babbled" (since 0.4.2) */
};
enum {
/* Note these 4 match the usb spec! */
usb_redir_type_control,
usb_redir_type_iso,
usb_redir_type_bulk,
usb_redir_type_interrupt,
usb_redir_type_invalid = 255
};
enum {
usb_redir_speed_low,
usb_redir_speed_full,
usb_redir_speed_high,
usb_redir_speed_super,
usb_redir_speed_unknown = 255
};
enum {
/* Control packets */
usb_redir_hello,
usb_redir_device_connect,
usb_redir_device_disconnect,
usb_redir_reset,
usb_redir_interface_info,
usb_redir_ep_info,
usb_redir_set_configuration,
usb_redir_get_configuration,
usb_redir_configuration_status,
usb_redir_set_alt_setting,
usb_redir_get_alt_setting,
usb_redir_alt_setting_status,
usb_redir_start_iso_stream,
usb_redir_stop_iso_stream,
usb_redir_iso_stream_status,
usb_redir_start_interrupt_receiving,
usb_redir_stop_interrupt_receiving,
usb_redir_interrupt_receiving_status,
usb_redir_alloc_bulk_streams,
usb_redir_free_bulk_streams,
usb_redir_bulk_streams_status,
usb_redir_cancel_data_packet,
usb_redir_filter_reject,
usb_redir_filter_filter,
usb_redir_device_disconnect_ack,
usb_redir_start_bulk_receiving,
usb_redir_stop_bulk_receiving,
usb_redir_bulk_receiving_status,
/* Data packets */
usb_redir_control_packet = 100,
usb_redir_bulk_packet,
usb_redir_iso_packet,
usb_redir_interrupt_packet,
usb_redir_buffered_bulk_packet,
};
enum {
/* Supports USB 3 bulk streams */
usb_redir_cap_bulk_streams,
/* The device_connect packet has the device_version_bcd field */
usb_redir_cap_connect_device_version,
/* Supports usb_redir_filter_reject and usb_redir_filter_filter pkts */
usb_redir_cap_filter,
/* Supports the usb_redir_device_disconnect_ack packet */
usb_redir_cap_device_disconnect_ack,
/* The ep_info packet has the max_packet_size field */
usb_redir_cap_ep_info_max_packet_size,
/* Supports 64 bits ids in usb_redir_header */
usb_redir_cap_64bits_ids,
/* Supports 32 bits length in usb_redir_bulk_packet_header */
usb_redir_cap_32bits_bulk_length,
/* Supports bulk receiving / buffered bulk input */
usb_redir_cap_bulk_receiving,
};
/* Number of uint32_t-s needed to hold all (known) capabilities */
#define USB_REDIR_CAPS_SIZE 1
struct usb_redir_header {
uint32_t type;
uint32_t length;
uint64_t id;
} ATTR_PACKED;
struct usb_redir_hello_header {
char version[64];
uint32_t capabilities[0];
} ATTR_PACKED;
struct usb_redir_device_connect_header {
uint8_t speed;
uint8_t device_class;
uint8_t device_subclass;
uint8_t device_protocol;
uint16_t vendor_id;
uint16_t product_id;
uint16_t device_version_bcd;
} ATTR_PACKED;
struct usb_redir_interface_info_header {
uint32_t interface_count;
uint8_t interface[32];
uint8_t interface_class[32];
uint8_t interface_subclass[32];
uint8_t interface_protocol[32];
} ATTR_PACKED;
struct usb_redir_ep_info_header {
uint8_t type[32];
uint8_t interval[32];
uint8_t interface[32];
uint16_t max_packet_size[32];
uint32_t max_streams[32];
} ATTR_PACKED;
struct usb_redir_set_configuration_header {
uint8_t configuration;
} ATTR_PACKED;
struct usb_redir_configuration_status_header {
uint8_t status;
uint8_t configuration;
} ATTR_PACKED;
struct usb_redir_set_alt_setting_header {
uint8_t interface;
uint8_t alt;
} ATTR_PACKED;
struct usb_redir_get_alt_setting_header {
uint8_t interface;
} ATTR_PACKED;
struct usb_redir_alt_setting_status_header {
uint8_t status;
uint8_t interface;
uint8_t alt;
} ATTR_PACKED;
struct usb_redir_start_iso_stream_header {
uint8_t endpoint;
uint8_t pkts_per_urb;
uint8_t no_urbs;
} ATTR_PACKED;
struct usb_redir_stop_iso_stream_header {
uint8_t endpoint;
} ATTR_PACKED;
struct usb_redir_iso_stream_status_header {
uint8_t status;
uint8_t endpoint;
} ATTR_PACKED;
struct usb_redir_start_interrupt_receiving_header {
uint8_t endpoint;
} ATTR_PACKED;
struct usb_redir_stop_interrupt_receiving_header {
uint8_t endpoint;
} ATTR_PACKED;
struct usb_redir_interrupt_receiving_status_header {
uint8_t status;
uint8_t endpoint;
} ATTR_PACKED;
struct usb_redir_alloc_bulk_streams_header {
uint32_t endpoints; /* bitmask indicating on which eps to alloc streams */
uint32_t no_streams;
} ATTR_PACKED;
struct usb_redir_free_bulk_streams_header {
uint32_t endpoints; /* bitmask indicating on which eps to free streams */
} ATTR_PACKED;
struct usb_redir_bulk_streams_status_header {
uint32_t endpoints; /* bitmask indicating eps this status message is for */
uint32_t no_streams;
uint8_t status;
} ATTR_PACKED;
struct usb_redir_start_bulk_receiving_header {
uint32_t stream_id;
uint32_t bytes_per_transfer;
uint8_t endpoint;
uint8_t no_transfers;
} ATTR_PACKED;
struct usb_redir_stop_bulk_receiving_header {
uint32_t stream_id;
uint8_t endpoint;
} ATTR_PACKED;
struct usb_redir_bulk_receiving_status_header {
uint32_t stream_id;
uint8_t endpoint;
uint8_t status;
} ATTR_PACKED;
struct usb_redir_control_packet_header {
uint8_t endpoint;
uint8_t request;
uint8_t requesttype;
uint8_t status;
uint16_t value;
uint16_t index;
uint16_t length;
} ATTR_PACKED;
struct usb_redir_bulk_packet_header {
uint8_t endpoint;
uint8_t status;
uint16_t length;
uint32_t stream_id;
uint16_t length_high; /* High 16 bits of the packet length */
} ATTR_PACKED;
struct usb_redir_iso_packet_header {
uint8_t endpoint;
uint8_t status;
uint16_t length;
} ATTR_PACKED;
struct usb_redir_interrupt_packet_header {
uint8_t endpoint;
uint8_t status;
uint16_t length;
} ATTR_PACKED;
struct usb_redir_buffered_bulk_packet_header {
uint32_t stream_id;
uint32_t length;
uint8_t endpoint;
uint8_t status;
} ATTR_PACKED;
#undef ATTR_PACKED
#if defined(__MINGW32__) || !defined(__GNUC__)
#pragma pack(pop)
#endif
#ifdef __cplusplus
}
#endif
#endif
|