Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(client): add option to HttpConnector to enable or disable #2837

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mnpw
Copy link

@mnpw mnpw commented May 20, 2022

This adds http_info configuration option in http::Config. It can be used to enable or disable HttpInfo.

HttpInfo is set through methods defined on TcpStream (peer_addr() and local_addr()). Configuration options have to be made available to TcpStream in order to enforce http_info. HttpConnection is added to achieve this.

Fixes #2833

Ps: Rust and oss newbie so apologies if I missed some obvious issue 😅

HttpInfo

Add `http_info` configuration option in `Config`. Change return type
of `HttpConnector` from `TcpStream` to `HttpConnection`. This gives
`TcpStream` access to `Config` for setting `HttpInfo` value.

BREAKING CHANGE: HttpConnector returns a `HttpConnection`
instead of `TcpStream`.
@ho-229
Copy link

ho-229 commented May 22, 2022

I think you should open a new PR to submit breaking changes.

Copy link
Member

@seanmonstar seanmonstar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR! I'm in favor of adding the configuration, though I believe we can do so without the breaking change I commented about below. :)

@@ -256,7 +274,7 @@ where
R: Resolve + Clone + Send + Sync + 'static,
R::Future: Send,
{
type Response = TcpStream;
type Response = HttpConnection;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would be a breaking change. Can we provide the configuration without needing a new type?

@ho-229
Copy link

ho-229 commented Jun 2, 2022

Are you still working on it🤔

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add option to HttpConnector to enable or disable HttpInfo
3 participants