mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +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 initialize_filters = require "prosody.util.filters".initialize;
|
||||||
|
local time = require "util.time";
|
||||||
local logger = require "prosody.util.logger";
|
local logger = require "prosody.util.logger";
|
||||||
|
|
||||||
local function new_session(typ)
|
local function new_session(typ)
|
||||||
local session = {
|
local session = {
|
||||||
type = typ .. "_unauthed";
|
type = typ .. "_unauthed";
|
||||||
base_type = typ;
|
base_type = typ;
|
||||||
|
since = time.now();
|
||||||
};
|
};
|
||||||
return session;
|
return session;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue