diff options
author | Marco Cirillo <maranda@lightwitch.org> | 2013-04-07 12:23:29 +0000 |
---|---|---|
committer | Marco Cirillo <maranda@lightwitch.org> | 2013-04-07 12:23:29 +0000 |
commit | d6c4bffd9b35ee768711e57c986435bdca4d87cf (patch) | |
tree | cc2246256af4ccd22b655d621c9ca50573f8c750 /net/http | |
parent | b090b67ec4185e79c83811ee2912b8ed32fce707 (diff) | |
download | prosody-d6c4bffd9b35ee768711e57c986435bdca4d87cf.tar.gz prosody-d6c4bffd9b35ee768711e57c986435bdca4d87cf.zip |
net.http.server: add API to allow firing events directly on the server.
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/server.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/http/server.lua b/net/http/server.lua index 20c2da3e..830579c9 100644 --- a/net/http/server.lua +++ b/net/http/server.lua @@ -284,6 +284,9 @@ end function _M.set_default_host(host) default_host = host; end +function _M.fire_event(event, ...) + return events.fire_event(event, ...); +end _M.listener = listener; _M.codes = codes; |