mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-15 22:08:17 +00:00
Fix closing console of VBox on NIX systems
This commit is contained in:
@ -56,6 +56,9 @@ class SerialReaderWriterProtocol(asyncio.Protocol):
|
||||
def data_received(self, data):
|
||||
self._output.feed_data(data)
|
||||
|
||||
def close(self):
|
||||
self._output.feed_eof()
|
||||
|
||||
|
||||
class WindowsPipe:
|
||||
"""
|
||||
|
Reference in New Issue
Block a user