-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Box CONNECT/CONNACK in codecs to cut packet size (#60)
* Box CONNECT/CONNACK in codecs to cut packet size - Box v3::codec::Packet::Connect - Box v5::codec::Packet::Connect and ConnAck Cuts down struct sizes: v3: Packet: 184 -> 80 Handshake: 216 -> 48 v5: Packet: 416 -> 256 Handshake: 456 -> 56 * upd CHANGES.md and version * fmt
- Loading branch information
Showing
18 changed files
with
75 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "ntex-mqtt" | ||
version = "0.7.0-b.6" | ||
version = "0.7.0-b.7" | ||
authors = ["ntex contributors <[email protected]>"] | ||
description = "MQTT Client/Server framework for v5 and v3.1.1 protocols" | ||
description = "Client and Server framework for MQTT v5 and v3.1.1 protocols" | ||
documentation = "https://docs.rs/ntex-mqtt" | ||
repository = "https://github.com/ntex-rs/ntex-mqtt.git" | ||
categories = ["network-programming"] | ||
|
@@ -12,7 +12,7 @@ exclude = [".gitignore", ".travis.yml", ".cargo/config"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
ntex = { version = "0.4.0-b.1", default-features = false } | ||
ntex = { version = "0.4.0-b.2", default-features = false } | ||
bitflags = "1.2" | ||
derive_more = "0.99" | ||
log = "0.4" | ||
|
@@ -28,4 +28,4 @@ tokio-rustls = "0.22" | |
openssl = "0.10" | ||
tokio-openssl = "0.6" | ||
|
||
ntex = { version = "0.4.0-b.1", features = ["rustls", "openssl"] } | ||
ntex = { version = "0.4.0-b.2", features = ["rustls", "openssl"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.