Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 5-network/11-websocket/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ socket.onerror = function(error) {

## 웹소켓 열기

When `new WebSocket(url)` is created, it starts connecting immediately.
`new WebSocket(url)`을 호출해 소켓을 생성하면 즉시 연결이 시작됩니다.

During the connection the browser (using headers) asks the server: "Do you support Websocket?" And if the server replies "yes", then the talk continues in WebSocket protocol, which is not HTTP at all.

Expand Down