mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Moved server module to net/
also added note on licensing of that module
This commit is contained in:
parent
6e36f98b3c
commit
0dadc00f7e
3 changed files with 29 additions and 2 deletions
25
doc/stanza_routing.txt
Normal file
25
doc/stanza_routing.txt
Normal file
|
@ -0,0 +1,25 @@
|
|||
No 'to' attribute:
|
||||
IQ: Pass to appropriate handler
|
||||
Presence: Broadcast to contacts
|
||||
- if initial presence, also send out presence probes
|
||||
- if probe would be to local user, generate presence stanza for them
|
||||
Message: Route as if it is addressed to the bare JID of the sender
|
||||
|
||||
To a local host:
|
||||
IQ: Pass to appropriate handler
|
||||
Presence: -
|
||||
Message: Deliver to admin?
|
||||
|
||||
To local contact:
|
||||
Bare JID:
|
||||
IQ: Pass to appropriate handler
|
||||
Presence: Broadcast to all resources
|
||||
Message: Route to 'best' resource
|
||||
Full JID:
|
||||
IQ: Send to resource
|
||||
Presence: Send to resource
|
||||
Message: Send to resource
|
||||
|
||||
To remote contact:
|
||||
Initiate s2s connection if necessary
|
||||
Send stanza across
|
2
main.lua
2
main.lua
|
@ -1,6 +1,6 @@
|
|||
require "luarocks.require"
|
||||
|
||||
server = require "server"
|
||||
server = require "net.server"
|
||||
require "socket"
|
||||
require "ssl"
|
||||
require "lxp"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
--[[
|
||||
|
||||
server.lua by blastbeat
|
||||
server.lua by blastbeat of the luadch project
|
||||
|
||||
re-used here under the MIT/X Consortium License
|
||||
|
||||
- this script contains the server loop of the program
|
||||
- other scripts can reg a server here
|
Loading…
Add table
Add a link
Reference in a new issue