Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] jetty 9.0 and Hixie76

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


Back to the top