mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.session: Add 'since' property with timestamp of session creation
This commit is contained in:
parent
124b4fa302
commit
75bf9e6eff
1 changed files with 2 additions and 0 deletions
|
@ -1,10 +1,12 @@
|
|||
local initialize_filters = require "prosody.util.filters".initialize;
|
||||
local time = require "util.time";
|
||||
local logger = require "prosody.util.logger";
|
||||
|
||||
local function new_session(typ)
|
||||
local session = {
|
||||
type = typ .. "_unauthed";
|
||||
base_type = typ;
|
||||
since = time.now();
|
||||
};
|
||||
return session;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue