Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
release: 0.02
  • Loading branch information
fffonion committed Aug 31, 2020
1 parent c898715 commit 0dcfccf
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resty/multiplexer/init.lua
Expand Up @@ -16,7 +16,7 @@ end


local _M = new_tab(0, 8)
_M._VERSION = '0.01'
_M._VERSION = '0.02'
_M.protocols = nil -- cached protocol modules
_M.matchers = nil -- cached matcher modules
_M.rules = nil -- user-definsed routing rules
Expand Down
26 changes: 26 additions & 0 deletions lua-resty-multiplexer-0.02-1.rockspec
@@ -0,0 +1,26 @@
package = "lua-resty-multiplexer"
version = "0.02-1"
source = {
url = "git+ssh://git@github.com/fffonion/lua-resty-multiplexer.git",
tag = "0.02"
}
description = {
detailed = "lua-resty-multiplexer - Transparent port service multiplexer for stream subsystem ",
homepage = "https://github.com/fffonion/lua-resty-multiplexer",
license = "BSD",
}
build = {
type = "builtin",
modules = {
["resty.multiplexer.init"] = "lib/resty/multiplexer/init.lua",
["resty.multiplexer.matcher.client-host"] = "lib/resty/multiplexer/matcher/client-host.lua",
["resty.multiplexer.matcher.default"] = "lib/resty/multiplexer/matcher/default.lua",
["resty.multiplexer.matcher.protocol"] = "lib/resty/multiplexer/matcher/protocol.lua",
["resty.multiplexer.matcher.time"] = "lib/resty/multiplexer/matcher/time.lua",
["resty.multiplexer.protocol.dns"] = "lib/resty/multiplexer/protocol/dns.lua",
["resty.multiplexer.protocol.http"] = "lib/resty/multiplexer/protocol/http.lua",
["resty.multiplexer.protocol.ssh"] = "lib/resty/multiplexer/protocol/ssh.lua",
["resty.multiplexer.protocol.tls"] = "lib/resty/multiplexer/protocol/tls.lua",
["resty.multiplexer.protocol.xmpp"] = "lib/resty/multiplexer/protocol/xmpp.lua"
}
}

0 comments on commit 0dcfccf

Please sign in to comment.