提交 15bfedcb 编写于 作者: C Chris Lalancette

Let remoteClientStream only do RX if requested.

Right now, the stream stuff assumes that a stream is always
going to be used for transmit.  This is not the case, and in
fact doesn't work with the tunnelled migration stuff.  Add
a flag to remoteClientStream() to allow it to do RX only.
Signed-off-by: NChris Lalancette <clalance@redhat.com>
上级 47c87095
......@@ -259,7 +259,8 @@ void remoteFreeClientStream(struct qemud_client *client,
* @stream: a stream to add
*/
int remoteAddClientStream(struct qemud_client *client,
struct qemud_client_stream *stream)
struct qemud_client_stream *stream,
int transmit)
{
struct qemud_client_stream *tmp = client->streams;
......@@ -280,7 +281,8 @@ int remoteAddClientStream(struct qemud_client *client,
stream->filter.next = client->filters;
client->filters = &stream->filter;
stream->tx = 1;
if (transmit)
stream->tx = 1;
remoteStreamUpdateEvents(stream);
......
......@@ -36,7 +36,8 @@ void remoteFreeClientStream(struct qemud_client *client,
struct qemud_client_stream *stream);
int remoteAddClientStream(struct qemud_client *client,
struct qemud_client_stream *stream);
struct qemud_client_stream *stream,
int transmit);
struct qemud_client_stream *
remoteFindClientStream(struct qemud_client *client,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册