From 98c61c9eab14cda36b07027128087ac9044b9d13 Mon Sep 17 00:00:00 2001 From: hnimminh Date: Sun, 13 Jun 2021 00:08:55 +0700 Subject: [PATCH] signing --- callng/callfunc.lua | 9 +++++++++ callng/configuration.lua | 9 +++++++++ callng/event.capacity.lua | 9 +++++++++ callng/event.cdr.lua | 9 +++++++++ callng/event.startup.lua | 9 +++++++++ callng/event.unauth.lua | 9 +++++++++ callng/main.lua | 9 +++++++++ callng/redirection.lua | 9 +++++++++ callng/utilities.lua | 9 +++++++++ liberator/__init__.py | 9 +++++++++ liberator/api.py | 9 +++++++++ liberator/basemgr.py | 9 +++++++++ liberator/cdr.py | 9 +++++++++ liberator/configuration.py | 9 +++++++++ liberator/fsxmlapi.py | 9 +++++++++ liberator/libreapi.py | 9 +++++++++ liberator/main.py | 9 +++++++++ liberator/utilities.py | 9 +++++++++ 18 files changed, 162 insertions(+) diff --git a/callng/callfunc.lua b/callng/callfunc.lua index 37b5f23..26a941a 100644 --- a/callng/callfunc.lua +++ b/callng/callfunc.lua @@ -1,3 +1,12 @@ +-- +-- callng:callfunc.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/utilities.lua") ---------------------******************************-------------------------- ---------------------****| CALL RELATED FUNCTION |****--------------------- diff --git a/callng/configuration.lua b/callng/configuration.lua index 9ca22ac..f8bd35e 100644 --- a/callng/configuration.lua +++ b/callng/configuration.lua @@ -1,3 +1,12 @@ +-- +-- callng:configuration.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + -- configuration SWVERSION = '{{version}}' NODEID = '{{nodeid}}' diff --git a/callng/event.capacity.lua b/callng/event.capacity.lua index 69434c6..952d5ff 100644 --- a/callng/event.capacity.lua +++ b/callng/event.capacity.lua @@ -1,3 +1,12 @@ +-- +-- callng:event.capacity.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/utilities.lua") --------------------------------------------------------------------------- diff --git a/callng/event.cdr.lua b/callng/event.cdr.lua index 3cebc36..58bbab6 100644 --- a/callng/event.cdr.lua +++ b/callng/event.cdr.lua @@ -1,3 +1,12 @@ +-- +-- callng:event.cdr.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/utilities.lua") --------------------------------------------------------------------------- diff --git a/callng/event.startup.lua b/callng/event.startup.lua index 5102564..88f2d7f 100644 --- a/callng/event.startup.lua +++ b/callng/event.startup.lua @@ -1,3 +1,12 @@ +-- +-- callng:event.startup.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/utilities.lua") --------------------------------------------------------------------------- diff --git a/callng/event.unauth.lua b/callng/event.unauth.lua index fee004e..62e04b4 100644 --- a/callng/event.unauth.lua +++ b/callng/event.unauth.lua @@ -1,3 +1,12 @@ +-- +-- callng:event.unauth.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/utilities.lua") --------------------------------------------------------------------------- diff --git a/callng/main.lua b/callng/main.lua index 7a75a86..be71535 100644 --- a/callng/main.lua +++ b/callng/main.lua @@ -1,3 +1,12 @@ +-- +-- callng:main.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. All Rights Reserved. +-- +-- + dofile("{{rundir}}/callng/callfunc.lua") ---------------------******************************--------------------- ---------------------****| INBOUND callng |****--------------------- diff --git a/callng/redirection.lua b/callng/redirection.lua index 790bc50..8590397 100644 --- a/callng/redirection.lua +++ b/callng/redirection.lua @@ -1,2 +1,11 @@ +-- +-- callng:redirection.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/configuration.lua") logify('module', 'callng', 'space', 'redirection', 'action', 'report', 'notice', 'please file a feature request for manual handle sip redirection') \ No newline at end of file diff --git a/callng/utilities.lua b/callng/utilities.lua index f33165d..65deee5 100644 --- a/callng/utilities.lua +++ b/callng/utilities.lua @@ -1,3 +1,12 @@ +-- +-- callng:main.lua +-- +-- The Initial Developer of the Original Code is +-- Minh Minh +-- Portions created by the Initial Developer are Copyright (C) the Initial Developer. +-- All Rights Reserved. +-- + dofile("{{rundir}}/callng/configuration.lua") -- REQUIRE diff --git a/liberator/__init__.py b/liberator/__init__.py index 76ac9a2..17fbfc1 100644 --- a/liberator/__init__.py +++ b/liberator/__init__.py @@ -1,3 +1,12 @@ +# +# liberator:__init__.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + from .configuration import * from .utilities import * from .basemgr import * diff --git a/liberator/api.py b/liberator/api.py index 870e61d..758404e 100644 --- a/liberator/api.py +++ b/liberator/api.py @@ -1,3 +1,12 @@ +# +# liberator:api.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import time import uuid import syslog diff --git a/liberator/basemgr.py b/liberator/basemgr.py index c65957e..9b5651f 100644 --- a/liberator/basemgr.py +++ b/liberator/basemgr.py @@ -1,3 +1,12 @@ +# +# liberator:basemgr.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import time import traceback import random diff --git a/liberator/cdr.py b/liberator/cdr.py index b50b8dd..7ddae92 100644 --- a/liberator/cdr.py +++ b/liberator/cdr.py @@ -1,3 +1,12 @@ +# +# liberator:cdr.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import time import traceback from threading import Thread diff --git a/liberator/configuration.py b/liberator/configuration.py index d274f7f..ecbc6dc 100644 --- a/liberator/configuration.py +++ b/liberator/configuration.py @@ -1,3 +1,12 @@ +# +# liberator:configuration.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + #----------------------------------------------------------------------------------------------------- # GLOBAL CONFIGURATION FILES #----------------------------------------------------------------------------------------------------- diff --git a/liberator/fsxmlapi.py b/liberator/fsxmlapi.py index 84c532b..343e909 100644 --- a/liberator/fsxmlapi.py +++ b/liberator/fsxmlapi.py @@ -1,3 +1,12 @@ +# +# liberator:fsxmlapi.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import traceback import json import copy diff --git a/liberator/libreapi.py b/liberator/libreapi.py index 34e55ea..f419c4d 100644 --- a/liberator/libreapi.py +++ b/liberator/libreapi.py @@ -1,3 +1,12 @@ +# +# liberator:libreapi.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import traceback import re import json diff --git a/liberator/main.py b/liberator/main.py index bd44ac9..84c354b 100644 --- a/liberator/main.py +++ b/liberator/main.py @@ -1,3 +1,12 @@ +# +# liberator:main.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import time import uuid import syslog diff --git a/liberator/utilities.py b/liberator/utilities.py index ad47e3f..d5aa98b 100644 --- a/liberator/utilities.py +++ b/liberator/utilities.py @@ -1,3 +1,12 @@ +# +# liberator:utilities.py +# +# The Initial Developer of the Original Code is +# Minh Minh +# Portions created by the Initial Developer are Copyright (C) the Initial Developer. +# All Rights Reserved. +# + import syslog import json from threading import Thread