|
|
bd56df |
From 90a59d545ad6759c105b0bfcfca70f574482584f Mon Sep 17 00:00:00 2001
|
|
|
bd56df |
Message-Id: <90a59d545ad6759c105b0bfcfca70f574482584f.1346162949.git.crobinso@redhat.com>
|
|
Justin M. Forbes |
d4cdad |
From: Amit Shah <amit.shah@redhat.com>
|
|
Justin M. Forbes |
d4cdad |
Date: Mon, 21 Mar 2011 21:57:47 +0100
|
|
|
bd56df |
Subject: [PATCH 101/114] char: Split out tcp socket close code in a separate
|
|
|
bd56df |
function
|
|
Justin M. Forbes |
d4cdad |
|
|
Justin M. Forbes |
d4cdad |
Signed-off-by: Amit Shah <amit.shah@redhat.com>
|
|
|
bd56df |
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
|
Justin M. Forbes |
d4cdad |
---
|
|
|
b6dd5a |
qemu-char.c | 25 ++++++++++++++++---------
|
|
Hans de Goede |
329b58 |
1 file changed, 16 insertions(+), 9 deletions(-)
|
|
Justin M. Forbes |
d4cdad |
|
|
Justin M. Forbes |
d4cdad |
diff --git a/qemu-char.c b/qemu-char.c
|
|
|
bd56df |
index 398baf1..8c53c05 100644
|
|
Justin M. Forbes |
d4cdad |
--- a/qemu-char.c
|
|
Justin M. Forbes |
d4cdad |
+++ b/qemu-char.c
|
|
|
bd56df |
@@ -2143,6 +2143,21 @@ static void tcp_chr_accept(void *opaque);
|
|
Hans de Goede |
329b58 |
|
|
|
bd56df |
static void tcp_chr_connect(void *opaque);
|
|
Hans de Goede |
329b58 |
|
|
Justin M. Forbes |
d4cdad |
+static void tcp_closed(void *opaque)
|
|
Justin M. Forbes |
d4cdad |
+{
|
|
Justin M. Forbes |
d4cdad |
+ CharDriverState *chr = opaque;
|
|
Justin M. Forbes |
d4cdad |
+ TCPCharDriver *s = chr->opaque;
|
|
Justin M. Forbes |
d4cdad |
+
|
|
Justin M. Forbes |
d4cdad |
+ s->connected = 0;
|
|
Justin M. Forbes |
d4cdad |
+ if (s->listen_fd >= 0) {
|
|
Justin M. Forbes |
d4cdad |
+ qemu_set_fd_handler2(s->listen_fd, NULL, tcp_chr_accept, NULL, chr);
|
|
Justin M. Forbes |
d4cdad |
+ }
|
|
Justin M. Forbes |
d4cdad |
+ qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
|
|
Justin M. Forbes |
d4cdad |
+ closesocket(s->fd);
|
|
Justin M. Forbes |
d4cdad |
+ s->fd = -1;
|
|
Justin M. Forbes |
d4cdad |
+ qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
|
|
Justin M. Forbes |
d4cdad |
+}
|
|
Justin M. Forbes |
d4cdad |
+
|
|
Justin M. Forbes |
d4cdad |
static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
|
|
Justin M. Forbes |
d4cdad |
{
|
|
Justin M. Forbes |
d4cdad |
TCPCharDriver *s = chr->opaque;
|
|
|
bd56df |
@@ -2302,15 +2317,7 @@ static void tcp_chr_read(void *opaque)
|
|
Justin M. Forbes |
d4cdad |
len = s->max_size;
|
|
Justin M. Forbes |
d4cdad |
size = tcp_chr_recv(chr, (void *)buf, len);
|
|
Justin M. Forbes |
d4cdad |
if (size == 0) {
|
|
Justin M. Forbes |
d4cdad |
- /* connection closed */
|
|
Justin M. Forbes |
d4cdad |
- s->connected = 0;
|
|
Justin M. Forbes |
d4cdad |
- if (s->listen_fd >= 0) {
|
|
Justin M. Forbes |
d4cdad |
- qemu_set_fd_handler2(s->listen_fd, NULL, tcp_chr_accept, NULL, chr);
|
|
Justin M. Forbes |
d4cdad |
- }
|
|
Justin M. Forbes |
d4cdad |
- qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
|
|
Justin M. Forbes |
d4cdad |
- closesocket(s->fd);
|
|
Justin M. Forbes |
d4cdad |
- s->fd = -1;
|
|
Justin M. Forbes |
d4cdad |
- qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
|
|
Justin M. Forbes |
d4cdad |
+ tcp_closed(chr);
|
|
Justin M. Forbes |
d4cdad |
} else if (size > 0) {
|
|
Justin M. Forbes |
d4cdad |
if (s->do_telnetopt)
|
|
Justin M. Forbes |
d4cdad |
tcp_chr_process_IAC_bytes(chr, s, buf, &size);
|
|
Justin M. Forbes |
d4cdad |
--
|
|
|
b6dd5a |
1.7.11.2
|
|
Justin M. Forbes |
d4cdad |
|