Software /
code /
prosody-modules
Comparison
mod_smacks/mod_smacks.lua @ 1670:5f5ff061b316
mod_smacks: Add license header
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 09 Apr 2015 14:23:48 +0200 |
parent | 1637:ad6694f7b13c |
child | 1703:a53385a78a64 |
comparison
equal
deleted
inserted
replaced
1669:a25d137439a7 | 1670:5f5ff061b316 |
---|---|
1 -- XEP-0198: Stream Management for Prosody IM | |
2 -- | |
3 -- Copyright (C) 2010-2015 Matthew Wild | |
4 -- Copyright (C) 2010 Waqas Hussain | |
5 -- Copyright (C) 2012-2015 Kim Alvefur | |
6 -- Copyright (C) 2012 Thijs Alkemade | |
7 -- Copyright (C) 2014 Florian Zeitz | |
8 -- | |
9 -- This project is MIT/X11 licensed. Please see the | |
10 -- COPYING file in the source package for more information. | |
11 -- | |
12 | |
1 local st = require "util.stanza"; | 13 local st = require "util.stanza"; |
2 local uuid_generate = require "util.uuid".generate; | 14 local uuid_generate = require "util.uuid".generate; |
3 | 15 |
4 local t_insert, t_remove = table.insert, table.remove; | 16 local t_insert, t_remove = table.insert, table.remove; |
5 local math_min = math.min; | 17 local math_min = math.min; |