mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Refactor framed io (#67)
* refactor framed io * allow to add filters * move io code to separate module * add into_boxed() * remove uneeded IO_STOP state * simplify on_disconnect storage * cleanup io state * add io connector
This commit is contained in:
parent
2188d92725
commit
841ad736d4
30 changed files with 3839 additions and 408 deletions
|
@ -3,6 +3,7 @@ members = [
|
|||
"ntex",
|
||||
"ntex-bytes",
|
||||
"ntex-codec",
|
||||
"ntex-io",
|
||||
"ntex-router",
|
||||
"ntex-rt",
|
||||
"ntex-service",
|
||||
|
@ -14,6 +15,7 @@ members = [
|
|||
ntex = { path = "ntex" }
|
||||
ntex-bytes = { path = "ntex-bytes" }
|
||||
ntex-codec = { path = "ntex-codec" }
|
||||
ntex-io = { path = "ntex-io" }
|
||||
ntex-router = { path = "ntex-router" }
|
||||
ntex-rt = { path = "ntex-rt" }
|
||||
ntex-service = { path = "ntex-service" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue