mirror of
https://github.com/fafhrd91/actix-web
synced 2025-07-04 09:56:22 +02:00
Compare commits
3 Commits
web-v3.3.0
...
0.7
Author | SHA1 | Date | |
---|---|---|---|
6813ce789d | |||
cc6e0c6d04 | |||
d9496d46d1 |
@ -1,6 +1,6 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [x.x.xx] - xxxx-xx-xx
|
## [0.7.19] - 2019-03-29
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -20,6 +20,11 @@
|
|||||||
|
|
||||||
* Fix preflight CORS header compliance; refactor previous patch (#603). #717
|
* Fix preflight CORS header compliance; refactor previous patch (#603). #717
|
||||||
|
|
||||||
|
* Fix never-ending HTTP2 request when response is empty (#709). #737
|
||||||
|
|
||||||
|
* Fix client payload decompression #674
|
||||||
|
|
||||||
|
|
||||||
## [0.7.18] - 2019-01-10
|
## [0.7.18] - 2019-01-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-web"
|
name = "actix-web"
|
||||||
version = "0.7.18"
|
version = "0.7.19"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -6,8 +6,8 @@ use std::time::{Duration, Instant};
|
|||||||
use std::{io, mem};
|
use std::{io, mem};
|
||||||
use tokio_timer::Delay;
|
use tokio_timer::Delay;
|
||||||
|
|
||||||
use actix_inner::dev::Request;
|
|
||||||
use actix::{Addr, SystemService};
|
use actix::{Addr, SystemService};
|
||||||
|
use actix_inner::dev::Request;
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
ClientConnector, ClientConnectorError, ClientRequest, ClientResponse, Connect,
|
ClientConnector, ClientConnectorError, ClientRequest, ClientResponse, Connect,
|
||||||
@ -88,7 +88,8 @@ impl SendRequest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn with_connector(
|
pub(crate) fn with_connector(
|
||||||
req: ClientRequest, conn: Addr<ClientConnector>,
|
req: ClientRequest,
|
||||||
|
conn: Addr<ClientConnector>,
|
||||||
) -> SendRequest {
|
) -> SendRequest {
|
||||||
SendRequest {
|
SendRequest {
|
||||||
req,
|
req,
|
||||||
@ -363,11 +364,11 @@ impl Pipeline {
|
|||||||
if let Some(ref mut decompress) = self.decompress {
|
if let Some(ref mut decompress) = self.decompress {
|
||||||
match decompress.feed_data(b) {
|
match decompress.feed_data(b) {
|
||||||
Ok(Some(b)) => return Ok(Async::Ready(Some(b))),
|
Ok(Some(b)) => return Ok(Async::Ready(Some(b))),
|
||||||
Ok(None) => return Ok(Async::NotReady),
|
Ok(None) => continue,
|
||||||
Err(ref err)
|
Err(ref err)
|
||||||
if err.kind() == io::ErrorKind::WouldBlock =>
|
if err.kind() == io::ErrorKind::WouldBlock =>
|
||||||
{
|
{
|
||||||
continue
|
continue;
|
||||||
}
|
}
|
||||||
Err(err) => return Err(err.into()),
|
Err(err) => return Err(err.into()),
|
||||||
}
|
}
|
||||||
|
@ -234,6 +234,16 @@ impl<H: 'static> Writer for H2Writer<H> {
|
|||||||
stream.reserve_capacity(cmp::min(self.buffer.len(), CHUNK_SIZE));
|
stream.reserve_capacity(cmp::min(self.buffer.len(), CHUNK_SIZE));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if self.flags.contains(Flags::EOF)
|
||||||
|
&& !self.flags.contains(Flags::RESERVED)
|
||||||
|
&& self.buffer.is_empty()
|
||||||
|
{
|
||||||
|
if let Err(e) = stream.send_data(Bytes::new(), true) {
|
||||||
|
return Err(io::Error::new(io::ErrorKind::Other, e));
|
||||||
|
}
|
||||||
|
return Ok(Async::Ready(()));
|
||||||
|
}
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
match stream.poll_capacity() {
|
match stream.poll_capacity() {
|
||||||
Ok(Async::NotReady) => return Ok(Async::NotReady),
|
Ok(Async::NotReady) => return Ok(Async::NotReady),
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
use std::net::{Shutdown, SocketAddr};
|
use std::net::{Shutdown, SocketAddr};
|
||||||
|
use std::rc::Rc;
|
||||||
use std::{io, time};
|
use std::{io, time};
|
||||||
|
|
||||||
use actix_net::ssl;
|
use actix_net::ssl;
|
||||||
@ -6,6 +7,7 @@ use openssl::ssl::{AlpnError, SslAcceptor, SslAcceptorBuilder};
|
|||||||
use tokio_io::{AsyncRead, AsyncWrite};
|
use tokio_io::{AsyncRead, AsyncWrite};
|
||||||
use tokio_openssl::SslStream;
|
use tokio_openssl::SslStream;
|
||||||
|
|
||||||
|
use extensions::Extensions;
|
||||||
use server::{IoStream, ServerFlags};
|
use server::{IoStream, ServerFlags};
|
||||||
|
|
||||||
/// Support `SSL` connections via openssl package
|
/// Support `SSL` connections via openssl package
|
||||||
@ -84,4 +86,14 @@ impl<T: IoStream> IoStream for SslStream<T> {
|
|||||||
fn set_keepalive(&mut self, dur: Option<time::Duration>) -> io::Result<()> {
|
fn set_keepalive(&mut self, dur: Option<time::Duration>) -> io::Result<()> {
|
||||||
self.get_mut().get_mut().set_keepalive(dur)
|
self.get_mut().get_mut().set_keepalive(dur)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn extensions(&self) -> Option<Rc<Extensions>> {
|
||||||
|
if let Some(x509) = self.get_ref().ssl().peer_certificate() {
|
||||||
|
let mut extensions = Extensions::new();
|
||||||
|
extensions.insert(x509);
|
||||||
|
Some(Rc::new(extensions))
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user