Software /
code /
verse
Comparison
init.lua @ 328:55e3fd7b9731
verse: Err, I meant the stream, not the connection
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 10 Feb 2013 04:29:20 +0100 |
parent | 327:963d156a4b36 |
child | 330:44d2bd1cee46 |
comparison
equal
deleted
inserted
replaced
327:963d156a4b36 | 328:55e3fd7b9731 |
---|---|
148 verse.log("error", "Attempt to close disconnected connection - possibly a bug"); | 148 verse.log("error", "Attempt to close disconnected connection - possibly a bug"); |
149 return; | 149 return; |
150 end | 150 end |
151 local on_disconnect = self.conn.disconnect(); | 151 local on_disconnect = self.conn.disconnect(); |
152 self.conn:close(); | 152 self.conn:close(); |
153 on_disconnect(self.conn, reason); | 153 on_disconnect(self, reason); |
154 end | 154 end |
155 | 155 |
156 -- Logging functions | 156 -- Logging functions |
157 function stream:debug(...) | 157 function stream:debug(...) |
158 return self.logger("debug", ...); | 158 return self.logger("debug", ...); |