diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2010-12-23 13:42:48 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-02-01 16:50:43 -0600 |
commit | c48855e1404e9b5857e07b7839f806fa98b4abdc (patch) | |
tree | 66ca46697fe88b69c8d6f2c9e501e7f499bdc63a /monitor.c | |
parent | d55dbc3acdaf92b42c7fd077c8b6c1392131c043 (diff) |
add qemu_chr_set_echo
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5175,6 +5175,7 @@ void monitor_init(CharDriverState *chr, int flags) /* Control mode requires special handlers */ qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read, monitor_control_event, mon); + qemu_chr_set_echo(chr, true); } else { qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event, mon); |