-
- All Implemented Interfaces:
public interface RequestListenerHandles incoming requests.
-
-
Method Summary
Modifier and Type Method Description abstract voidprocessRequest(StunMessageEvent evt)Called when delivering incoming STUN requests. -
-
Method Detail
-
processRequest
abstract void processRequest(StunMessageEvent evt)
Called when delivering incoming STUN requests. Throwing an IllegalArgumentException from within this method would cause the stack to reply with a 400 Bad RequestResponse using the exception's message as a reason phrase for the error response. Any other exception would result in a 500 Server Error.
- Parameters:
evt- the event containing the incoming STUN request.
-
-
-
-