diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-14 18:54:19 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-14 18:54:19 +0000 |
commit | b06c5faec463339f95023abb0b1e2aa09dbefd7c (patch) | |
tree | 4020431c1c673eb11124ba8f12135fed180c0e41 | |
parent | 50e328e87fb21ffca2780128ed5da9c0e011eb5f (diff) | |
download | prosody-b06c5faec463339f95023abb0b1e2aa09dbefd7c.tar.gz prosody-b06c5faec463339f95023abb0b1e2aa09dbefd7c.zip |
Remove some old unused (and empty) functions from s2smanager
-rw-r--r-- | core/s2smanager.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 3f286d0e..490dfec4 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -28,9 +28,6 @@ local srvmap = { ["gmail.com"] = "talk.google.com", ["identi.ca"] = "longlance.c module "s2smanager" -function connect_host(from_host, to_host) -end - function send_to_host(from_host, to_host, data) local host = hosts[from_host].s2sout[to_host]; if host then @@ -67,10 +64,6 @@ function send_to_host(from_host, to_host, data) end end -function disconnect_host(host) - -end - local open_sessions = 0; function new_incoming(conn) |