From 070da900a4bdda26ee4ee00ad6e3d9fcb6aa262a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 15 Sep 2014 01:39:23 -0400 Subject: start working on a watcher menu for the ssh side --- termcast.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'termcast.py') diff --git a/termcast.py b/termcast.py index c1d8a5e..c5495cf 100644 --- a/termcast.py +++ b/termcast.py @@ -52,7 +52,8 @@ class Connection(object): return print(b"got auth: " + auth) - self.client.send(b"hello, " + m.group(1) + b"\n") + self.name = m.group(1) + self.client.send(b"hello, " + self.name + b"\n") extra_data = {} extra_data_re = re.compile(b'^\033\[H\000([^\377]*)\377\033\[H\033\[2J(.*)$') @@ -81,3 +82,9 @@ class Connection(object): # if connection_id != self.connection_id: # return self.publisher.notify("new_data", self.connection_id, self.handler.buf, b'') + + def request_get_streamers(self): + return { + "name": self.name, + "id": self.connection_id, + } -- cgit v1.2.3-54-g00ecf