|
Openfire 3.6.1 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jivesoftware.openfire.net.StanzaHandler org.jivesoftware.openfire.net.ServerStanzaHandler
public class ServerStanzaHandler
Handler of XML stanzas sent by remote servers. Remote servers that send stanzas with no TO or FROM will get their connections closed. Moreover, remote servers that try to send stanzas from a not validated domain will also get their connections closed.
Server-to-server communication requires two TCP connections between the servers where one is used for sending packets whilst the other connection is used for receiving packets. The connection used for receiving packets will use a ServerStanzaHandler since the other connection will not receive packets.
TODO Finish migration of s2s to use NIO instead of blocking threads. Migrate from ServerSocketReader.
Field Summary |
---|
Fields inherited from class org.jivesoftware.openfire.net.StanzaHandler |
---|
CHARSET, connection, serverName, session |
Constructor Summary | |
---|---|
ServerStanzaHandler(PacketRouter router,
String serverName,
Connection connection)
|
Method Summary | |
---|---|
protected void |
processIQ(IQ packet)
Process the received IQ packet. |
protected void |
processMessage(Message packet)
Process the received Message packet. |
protected void |
processPresence(Presence packet)
Process the received Presence packet. |
Methods inherited from class org.jivesoftware.openfire.net.StanzaHandler |
---|
createSession, process |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ServerStanzaHandler(PacketRouter router, String serverName, Connection connection)
Method Detail |
---|
protected void processIQ(IQ packet) throws UnauthorizedException
StanzaHandler
PacketInterceptor
will be invoked before
and after the packet was routed.Subclasses may redefine this method for different reasons such as modifying the sender of the packet to avoid spoofing, rejecting the packet or even process the packet in another thread.
processIQ
in class StanzaHandler
packet
- the received packet.
UnauthorizedException
- if service is not available to sender.protected void processPresence(Presence packet) throws UnauthorizedException
StanzaHandler
PacketInterceptor
will be invoked before
and after the packet was routed.Subclasses may redefine this method for different reasons such as modifying the sender of the packet to avoid spoofing, rejecting the packet or even process the packet in another thread.
processPresence
in class StanzaHandler
packet
- the received packet.
UnauthorizedException
- if service is not available to sender.protected void processMessage(Message packet) throws UnauthorizedException
StanzaHandler
PacketInterceptor
will be invoked before
and after the packet was routed.Subclasses may redefine this method for different reasons such as modifying the sender of the packet to avoid spoofing, rejecting the packet or even process the packet in another thread.
processMessage
in class StanzaHandler
packet
- the received packet.
UnauthorizedException
- if service is not available to sender.
|
Openfire 3.6.1 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |