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
|
usbredir-0.5 7 September 2012
-------------------------------
-Windows support
-Add support for 64 bit packet ids
-usbredirparser:
-Add state serialization support
-API and ABI changed to use 64 bit ids, all users need to be adjusted and
recompiled for this!!
-usbredirhost:
-Remove bulk packets time out, this fixes various devices not working
-Ack packet cancels immediately
-Now supports 64 bits packet ids
-Use libusb_error_name instead of logging raw error codes
-usbredirfilter_check return -ENOENT rather then -EPERM if no rules match a
device, this way the caller can differentiate between a deny caused by a
matching rule, and one caused by there being no matching rules.
usbredir-0.4.3 2 April 2012
---------------------------
-usbredirhost:
-Don't crash on devices in unconfigured state
-Restore original device configuration when releasing the device
-Significantly speed up reset handling
-usbredirserver:
-Add a manpage
usbredir-0.4.2 6 March 2012
---------------------------
-Add usb_redir_babble status code
-usbredirparser:
-extend the usb_redir_ep_info packet header with a max_packet_size field
This new field is only send / received if both sides have the (new)
usb_redir_cap_ep_info_max_packet_size capability
-usbredirhost:
-Ensure we always re-attach kernel drivers on cleanup
-Make set_config handling more robust
-A set_config or a reset can cause us to loose access to the device, if
this happens this now gets reported by usbredirhost_read_guest_data
returning usbredirhost_read_device_lost
usbredir-0.4.1 25 February 2012
-------------------------------
-Brown paper bag release, fix a return without value in a non void function
which completely breaks usbredir in some cases
usbredir-0.4 22 February 2012
-----------------------------
-Add usb_redir_filter_reject and usb_redir_filter_filter packets and
an usb_redir_cap_filter capability flag
-Add an usb_redir_device_disconnect_ack packet and
an usb_redir_cap_device_disconnect_ack capability flag
-usbredirparser:
-Add an usbredirparser_have_peer_caps function
-usbredirhost:
-Allow re-using a host instance with multiple devices, see the documentation
for the new usbredirhost_set_device() function in usbredirhost.h
-Quite a few bugfixes
usbredir-0.3.3 12 January 2012
------------------------------
-usbredirparser:
-add usbredirfilter code, to help apps exclude certain devices from
redirection. See usbredirfilter.h for details.
-usbredirhost:
-add a usbredirhost_check_device_filter helper function. See usbredirhost.h
usbredir-0.3.2 3 January 2012
-----------------------------
-Switched to automake/autoconf/libtool based make system (Christophe Fergeau)
-usbredirparser:
-limited multi-thread safeness, see README.multi-thread
-extend the device_connect packet header with a device_version field
This new field is only send / received if both sides have the (new)
usb_redir_cap_connect_device_version capability.
-Add a hello_func callback which gets called after receiving the hello
packet from the other side. This can be used to determine when the caps
from the other side have been received and it thus is safe to call
usbredirparser_send_device_connect.
-usbredirhost:
-limited multi-thread safeness, see README.multi-thread
-properly handle clear stalls send from the usbguest
-try to keep our iso buffer size near the target size
-implement usb_redir_cap_connect_device_version
usbredir-0.3.1 18 August 2011
-----------------------------
-usbredirparser:
-add a usbredirparser_fl_write_cb_owns_buffer flag
See the comment in usbredirparser.h above usbredirparser_write for details.
-add a usbredirparser_free_packet_data function for symetry with
usbredirparser_free_write_buffer
-usbredirhost:
-Fix device resets
-Add a flags parameter to usbredirhost_open, this accepts the following flags:
usbredirhost_fl_write_cb_owns_buffer
-The flags parameter causes an ABI breakage, new soname: libusbredirhost.so.1
-usbredirserver:
-Fix -v flag
ubsredir-0.3 14 July 2011
-------------------------
-Initial release, start at version 0.3 to match the version of
the protocol desciption doc usb-redirection-protocol.txt
|