Skip to content

Commit ca0ac04

Browse files
committed
Updated README.md
1 parent 77c6b4a commit ca0ac04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@ You could change the transport of your application in literally one line.
3838
- Multiplatform: see [mio platform support](https://github.com/tokio-rs/mio#platforms).
3939
- Multiples transports
4040
([docs](https://docs.rs/message-io/latest/message_io/network/enum.Transport.html)):
41-
- **TCP**: native and framed version
41+
- **TCP**: stream and framed mode (to deal with messages instead of stream)
4242
- **UDP**, with multicast option
4343
- **WebSocket**: basic and secure option using
4444
[tungstenite-rs](https://github.com/snapview/tungstenite-rs).
45-
- Customizable: `message-io` doesn't have the transport you need?
46-
Add easily and [adapter](#custom-adapter).
4745
- Custom FIFO events with timers and priority.
4846
- Easy, intuitive and consistent API:
4947
- Follows [KISS principle](https://en.wikipedia.org/wiki/KISS_principle).
@@ -62,6 +60,8 @@ You could change the transport of your application in literally one line.
6260
multiple threads.
6361
- Zero-copy message. You write and read directly from the internal OS socket buffer without any copy in the middle by the library.
6462
- Full duplex: simultaneous reading/writing operations over same internal OS sockets.
63+
- Customizable: `message-io` doesn't have the transport you need?
64+
Add easily and [adapter](#custom-adapter).
6565

6666
## Getting started
6767
Add to your `Cargo.toml` (all the transports included by default):

0 commit comments

Comments
 (0)