Created init function.

Fix clean, just clean its level
squeeze-backports
Victor Seva 13 years ago
parent 877a7d0583
commit f0e78c415e

@ -8,23 +8,7 @@ NGCPXAvp_MT = {
__index = NGCPXAvp
}
function NGCPXAvp:new(level,group,l)
if level ~= 'caller' and level ~= 'callee' then
error("unknown level. It has to be [caller|callee]")
end
if not l or #l == 0 then
error("list empty")
end
local t = {
group = group,
keys = {}
}
if level == 'callee' then
t.level = 1
else
t.level = 0
end
NGCPXAvp._create(t, t.level,group,l)
local t = NGCPXAvp.init(level,group,l)
NGCPXAvp_MT.__call = function(t, key, value)
if not key then
error("key is empty")
@ -47,6 +31,28 @@ NGCPXAvp_MT = {
return t
end
function NGCPXAvp.init(level,group,l)
if level ~= 'caller' and level ~= 'callee' then
error("unknown level. It has to be [caller|callee]")
end
if not l then
error("list empty")
end
local t = {
group = group,
keys = {}
}
if level == 'callee' then
t.level = 1
else
t.level = 0
end
NGCPXAvp._create(t, t.level,group,l)
return t
end
function NGCPXAvp._setvalue(id, vtype, value)
local check = nil
-- sr.log("info", string.format("vtype:[%s]:%d", type(vtype), vtype))
@ -92,10 +98,7 @@ NGCPXAvp_MT = {
end
function NGCPXAvp:clean()
--print("NGCPXAvp:clean")
--print(table.tostring(getmetatable(self)))
--print(table.tostring(self))
sr.pv.unset(string.format("$xavp(%s)", self.group))
sr.pv.unset(string.format("$xavp(%s[%d])", self.group, self.level))
end
-- class
--EOF
Loading…
Cancel
Save