Software /
code /
verse
Changeset
83:8221f3c25fd4
verse.client: Add stream_id property
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 03 Aug 2010 09:17:03 +0100 |
parents | 82:f306c2f8bb88 |
children | 84:d85d2443478e |
files | client.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/client.lua Fri Jul 02 13:36:18 2010 +0100 +++ b/client.lua Tue Aug 03 09:17:03 2010 +0100 @@ -19,7 +19,8 @@ default_ns = "jabber:client" }; function stream_callbacks.streamopened(stream, attr) - if not stream:event("opened") then + stream.stream_id = attr.id; + if not stream:event("opened", attr) then stream.notopen = nil; end return true;