Skip to content

Commit 9b40282

Browse files
[autofix.ci] apply automated fixes
1 parent c7cd9d5 commit 9b40282

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bun.js/bindings/webcore/WebSocket.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ class WebSocket final : public RefCounted<WebSocket>, public EventTargetWithInli
9797
// Tracks the connection type for both the upgrade client and the connected websocket.
9898
// This replaces separate m_isSecure and m_proxyIsHTTPS bools.
9999
enum class ConnectionType : uint8_t {
100-
Plain, // ws:// direct connection
101-
TLS, // wss:// direct connection
100+
Plain, // ws:// direct connection
101+
TLS, // wss:// direct connection
102102
ProxyPlain, // ws:// or wss:// through HTTP proxy (plain socket to proxy)
103-
ProxyTLS // ws:// or wss:// through HTTPS proxy (TLS socket to proxy)
103+
ProxyTLS // ws:// or wss:// through HTTPS proxy (TLS socket to proxy)
104104
};
105105

106106
ExceptionOr<void> connect(const String& url);

0 commit comments

Comments
 (0)