mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +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
|
||||
matrix:
|
||||
version:
|
||||
- 1.51.0 # MSRV
|
||||
- 1.53.0 # MSRV
|
||||
- stable
|
||||
- nightly
|
||||
|
||||
|
@ -43,7 +43,7 @@ jobs:
|
|||
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- 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
|
||||
with:
|
||||
path: ~/.cargo/bin
|
||||
|
@ -57,19 +57,19 @@ jobs:
|
|||
args: --all --all-features --no-fail-fast -- --nocapture
|
||||
|
||||
- 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
|
||||
run: |
|
||||
cargo install cargo-tarpaulin
|
||||
|
||||
- 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
|
||||
run: |
|
||||
cargo tarpaulin --out Xml --all --all-features
|
||||
|
||||
- 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
|
||||
uses: codecov/codecov-action@v1
|
||||
with:
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||
[](https://crates.io/crates/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>
|
||||
|
@ -24,7 +24,7 @@
|
|||
## Documentation & community resources
|
||||
|
||||
* [Documentation](https://docs.rs/ntex)
|
||||
* Minimum supported Rust version: 1.48 or later
|
||||
* Minimum supported Rust version: 1.53 or later
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.4.7] - 2021-11-02
|
||||
|
||||
* h1: allow to override connection type in on-request handler
|
||||
|
||||
## [0.4.6] - 2021-10-29
|
||||
|
||||
* time: fix wheel time calculations
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.4.6"
|
||||
version = "0.4.7"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||
[](https://crates.io/crates/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>
|
||||
|
@ -24,7 +24,7 @@
|
|||
## Documentation & community resources
|
||||
|
||||
* [Documentation](https://docs.rs/ntex)
|
||||
* Minimum supported Rust version: 1.48 or later
|
||||
* Minimum supported Rust version: 1.53 or later
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
@ -98,6 +98,10 @@ impl Codec {
|
|||
self.flags.get().contains(Flags::KEEPALIVE_ENABLED)
|
||||
}
|
||||
|
||||
pub(super) fn set_ctype(&self, ctype: ConnectionType) {
|
||||
self.ctype.set(ctype)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
#[doc(hidden)]
|
||||
pub fn set_date_header(&self, dst: &mut BytesMut) {
|
||||
|
|
|
@ -241,6 +241,9 @@ where
|
|||
if let Poll::Ready(result) = Pin::new(fut).poll(cx) {
|
||||
match result {
|
||||
Ok(req) => {
|
||||
this.inner
|
||||
.codec
|
||||
.set_ctype(req.head().connection_type());
|
||||
if req.head().expect() {
|
||||
// Handle normal requests with EXPECT: 100-Continue` header
|
||||
Some(CallState::Expect {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue