Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bzick committed Apr 4, 2016
1 parent 42b5f3d commit 1684dc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
WebSocket frame parser
======================
WebSocket frame parser and builder
==================================

This is a parser for WebSocket frame-messages (see [RFC6455](https://tools.ietf.org/html/rfc6455)) written in C.
This is a parser and builder for WebSocket messages (see [RFC6455](https://tools.ietf.org/html/rfc6455)) written in C.

### Features
* Fast parsing and building of websocket messages
Expand Down Expand Up @@ -109,7 +109,7 @@ build frame
websocket_build_frame(frame, WS_OP_TEXT | WS_FINAL_FRAME | WS_HAS_MASK, mask, data, data_len);
```
and send binary string via socket
and send binary string
```c
write(sock, frame, frame_len);
Expand Down

0 comments on commit 1684dc0

Please sign in to comment.