Mercurial > prosody-hg
view util/session.lua @ 6938:9df70e9e006b
util.session: What is the identity of a session?
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 24 Nov 2015 19:09:51 +0100 |
| parents | f5d2e58fbefa |
| children | a9ae0c6ac4f4 |
line wrap: on
line source
local function new_session(typ) local session = { type = typ .. "_unauthed"; }; return session; end local function set_id(session) local id = typ .. tostring(session):match("%x+$"):lower(); session.id = id; return session; end return { new = new_session; set_id = set_id; }
