Interface ProxyWebSocketCreationHandler
public interface ProxyWebSocketCreationHandler
Extensions can implement this interface and then call 
The handler will be notified of new WebSockets being created by the Proxy tool.
Proxy.registerWebSocketCreationHandler(burp.api.montoya.proxy.websocket.ProxyWebSocketCreationHandler) to register a WebSocket handler.The handler will be notified of new WebSockets being created by the Proxy tool.
- 
Method SummaryModifier and TypeMethodDescriptionvoidhandleWebSocketCreation(ProxyWebSocketCreation webSocketCreation) Invoked by Burp when a WebSocket is being created by the Proxy tool.
 Note that the client side of the connection will not be upgraded until after this method completes.
- 
Method Details- 
handleWebSocketCreationInvoked by Burp when a WebSocket is being created by the Proxy tool.
 Note that the client side of the connection will not be upgraded until after this method completes.- Parameters:
- webSocketCreation-- ProxyWebSocketCreationcontaining information about the proxy websocket that is being created
 
 
-