mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
230c0b34d4
This adds support for WebSocket subprotocols to WebSocket DOM objects, with some necessary plumbing to LibWebSocket and its clients. See the associated pull request for how this was tested.
29 lines
795 B
C++
29 lines
795 B
C++
/*
|
|
* Copyright (c) 2022, Dex♪ <dexes.ttp@gmail.com>
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/WebSockets/WebSocket.h>
|
|
#include <LibWebSocket/ConnectionInfo.h>
|
|
#include <LibWebSocket/Message.h>
|
|
#include <LibWebSocket/WebSocket.h>
|
|
|
|
#pragma once
|
|
|
|
namespace Ladybird {
|
|
|
|
class WebSocketClientManagerLadybird : public Web::WebSockets::WebSocketClientManager {
|
|
public:
|
|
static NonnullRefPtr<WebSocketClientManagerLadybird> create();
|
|
|
|
virtual ~WebSocketClientManagerLadybird() override;
|
|
virtual RefPtr<Web::WebSockets::WebSocketClientSocket> connect(AK::URL const&, DeprecatedString const& origin, Vector<DeprecatedString> const& protocols) override;
|
|
|
|
private:
|
|
WebSocketClientManagerLadybird();
|
|
};
|
|
|
|
}
|