Hi guys, 

There are some old iOS 5.1 devices only supports Hixie76. However the latest 
jetty 9 only supports RFC6455. The WebSocketServerFactory class only initialize 
the handshakes map with a single protocol.

    private final Map<Integer, WebSocketHandshake> handshakes = new HashMap<>();
    {
        handshakes.put(HandshakeRFC6455.VERSION,new HandshakeRFC6455());
    }
 
How can I make it support Hixie76?

-- 
Daniel Wu
Sent with Sparrow (http://www.sparrowmailapp.com/?sig)

_______________________________________________
jetty-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/jetty-users

Reply via email to