summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2012-02-22 12:20:34 +0100
committerHans de Goede <hdegoede@redhat.com>2012-02-22 16:35:23 +0100
commit575d73b42b283fb7f76a7e627cda94c896c90f00 (patch)
treed84d3da61b4c6285b9f9d93dfa7037e62c8184d2
parente848f9b28a0192305db3bce3a8fd3fb8cd225bec (diff)
Release 0.4usbredir-0.4
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--ChangeLog16
-rw-r--r--configure.ac2
-rw-r--r--usb-redirection-protocol.txt9
-rw-r--r--usbredirparser/usbredirparser.h2
4 files changed, 24 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a8512b8..6339518 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+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:
diff --git a/configure.ac b/configure.ac
index 5ab298c..1e8a121 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.63)
-AC_INIT([usbredir], [0.3.4])
+AC_INIT([usbredir], [0.4])
AC_CONFIG_SRCDIR([configure.ac])
AM_CONFIG_HEADER([config.h])
diff --git a/usb-redirection-protocol.txt b/usb-redirection-protocol.txt
index 3b46bc7..081508a 100644
--- a/usb-redirection-protocol.txt
+++ b/usb-redirection-protocol.txt
@@ -1,4 +1,4 @@
-USB Network Redirection protocol description version 0.3 (14 July 2011)
+USB Network Redirection protocol description version 0.4 (22 February 2012)
Revisions
---------
@@ -42,6 +42,9 @@ Version 0.3, released 14 July 2011
-Drop usb_redir_reset_status, instead if reconnecting to the device fails
after reset the usb-host will send a usb_redir_device_disconnect packet
+Version 0.3.1, released 18 August 2011
+- No protocol changes
+
Version 0.3.2, released 3 January 2012
-The usb_redir_device_connect_header has been extended with a
device_version_bcd field. This is only send / received if both sides
@@ -50,13 +53,13 @@ Version 0.3.2, released 3 January 2012
Version 0.3.3, released 12 January 2012
- No protocol changes
-Version 0.3.4, released FIXME 2012
+Version 0.4, released 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
-USB redirerection protocol version 0.3
+USB redirerection protocol version 0.4
--------------------------------------
The protocol described in this document is meant for tunneling usb transfers
diff --git a/usbredirparser/usbredirparser.h b/usbredirparser/usbredirparser.h
index 1c08dc3..2b5fd1d 100644
--- a/usbredirparser/usbredirparser.h
+++ b/usbredirparser/usbredirparser.h
@@ -171,7 +171,7 @@ struct usbredirparser {
usbredirparser_free_lock free_lock_func;
/* usbredir 0.3.2 new control packet complete callbacks */
usbredirparser_hello hello_func;
- /* usbredir 0.3.4 new control packet complete callbacks */
+ /* usbredir 0.4 new control packet complete callbacks */
usbredirparser_filter_reject filter_reject_func;
usbredirparser_filter_filter filter_filter_func;
usbredirparser_device_disconnect_ack device_disconnect_ack_func;