mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 06:17:40 +03:00
h1: allow to override connection type in on-request handler
This commit is contained in:
parent
21281a236a
commit
18a2fde154
7 changed files with 21 additions and 10 deletions
10
.github/workflows/linux.yml
vendored
10
.github/workflows/linux.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
version:
|
version:
|
||||||
- 1.51.0 # MSRV
|
- 1.53.0 # MSRV
|
||||||
- stable
|
- stable
|
||||||
- nightly
|
- nightly
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ jobs:
|
||||||
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
- name: Cache cargo tarpaulin
|
- name: Cache cargo tarpaulin
|
||||||
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.cargo/bin
|
path: ~/.cargo/bin
|
||||||
|
@ -57,19 +57,19 @@ jobs:
|
||||||
args: --all --all-features --no-fail-fast -- --nocapture
|
args: --all --all-features --no-fail-fast -- --nocapture
|
||||||
|
|
||||||
- name: Install tarpaulin
|
- name: Install tarpaulin
|
||||||
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
cargo install cargo-tarpaulin
|
cargo install cargo-tarpaulin
|
||||||
|
|
||||||
- name: Generate coverage report
|
- name: Generate coverage report
|
||||||
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
cargo tarpaulin --out Xml --all --all-features
|
cargo tarpaulin --out Xml --all --all-features
|
||||||
|
|
||||||
- name: Upload to Codecov
|
- name: Upload to Codecov
|
||||||
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
[](https://codecov.io/gh/ntex-rs/ntex)
|
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||||
[](https://crates.io/crates/ntex)
|
[](https://crates.io/crates/ntex)
|
||||||
[](https://docs.rs/ntex)
|
[](https://docs.rs/ntex)
|
||||||
[](https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html)
|
[](https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html)
|
||||||

|

|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
## Documentation & community resources
|
## Documentation & community resources
|
||||||
|
|
||||||
* [Documentation](https://docs.rs/ntex)
|
* [Documentation](https://docs.rs/ntex)
|
||||||
* Minimum supported Rust version: 1.48 or later
|
* Minimum supported Rust version: 1.53 or later
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.4.7] - 2021-11-02
|
||||||
|
|
||||||
|
* h1: allow to override connection type in on-request handler
|
||||||
|
|
||||||
## [0.4.6] - 2021-10-29
|
## [0.4.6] - 2021-10-29
|
||||||
|
|
||||||
* time: fix wheel time calculations
|
* time: fix wheel time calculations
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex"
|
name = "ntex"
|
||||||
version = "0.4.6"
|
version = "0.4.7"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Framework for composable network services"
|
description = "Framework for composable network services"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
[](https://codecov.io/gh/ntex-rs/ntex)
|
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||||
[](https://crates.io/crates/ntex)
|
[](https://crates.io/crates/ntex)
|
||||||
[](https://docs.rs/ntex)
|
[](https://docs.rs/ntex)
|
||||||
[](https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html)
|
[](https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html)
|
||||||

|

|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
## Documentation & community resources
|
## Documentation & community resources
|
||||||
|
|
||||||
* [Documentation](https://docs.rs/ntex)
|
* [Documentation](https://docs.rs/ntex)
|
||||||
* Minimum supported Rust version: 1.48 or later
|
* Minimum supported Rust version: 1.53 or later
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,10 @@ impl Codec {
|
||||||
self.flags.get().contains(Flags::KEEPALIVE_ENABLED)
|
self.flags.get().contains(Flags::KEEPALIVE_ENABLED)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub(super) fn set_ctype(&self, ctype: ConnectionType) {
|
||||||
|
self.ctype.set(ctype)
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
pub fn set_date_header(&self, dst: &mut BytesMut) {
|
pub fn set_date_header(&self, dst: &mut BytesMut) {
|
||||||
|
|
|
@ -241,6 +241,9 @@ where
|
||||||
if let Poll::Ready(result) = Pin::new(fut).poll(cx) {
|
if let Poll::Ready(result) = Pin::new(fut).poll(cx) {
|
||||||
match result {
|
match result {
|
||||||
Ok(req) => {
|
Ok(req) => {
|
||||||
|
this.inner
|
||||||
|
.codec
|
||||||
|
.set_ctype(req.head().connection_type());
|
||||||
if req.head().expect() {
|
if req.head().expect() {
|
||||||
// Handle normal requests with EXPECT: 100-Continue` header
|
// Handle normal requests with EXPECT: 100-Continue` header
|
||||||
Some(CallState::Expect {
|
Some(CallState::Expect {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue