aboutsummaryrefslogtreecommitdiffstats
path: root/termcast.py
diff options
context:
space:
mode:
Diffstat (limited to 'termcast.py')
-rw-r--r--termcast.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/termcast.py b/termcast.py
index fcc43c6..c1d8a5e 100644
--- a/termcast.py
+++ b/termcast.py
@@ -71,13 +71,13 @@ class Connection(object):
while True:
buf = self.client.recv(1024)
if len(buf) > 0:
+ self.publisher.notify("new_data", self.connection_id, self.handler.buf, buf)
self.handler.process(buf)
else:
return
- def request_new_viewer(self, connection_id):
+ def msg_new_viewer(self, connection_id):
# XXX restore this once we start passing in meaningful connection ids
# if connection_id != self.connection_id:
# return
- term_contents = self.handler.get_term()
- return term_contents.replace("\n", "\r\n")
+ self.publisher.notify("new_data", self.connection_id, self.handler.buf, b'')