Skip to content

Commit

Permalink
Make the field private
Browse files Browse the repository at this point in the history
  • Loading branch information
kazk committed Mar 14, 2022
1 parent a7c0056 commit 2177abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/sec_websocket_extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ use {Error, Header, HeaderValue};
/// [RFC6455_11.3.2]: https://tools.ietf.org/html/rfc6455#section-11.3.2
/// [RFC7692_7]: https://tools.ietf.org/html/rfc7692#section-7
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct SecWebsocketExtensions(pub Vec<WebsocketExtension>);
pub struct SecWebsocketExtensions(Vec<WebsocketExtension>);

impl Header for SecWebsocketExtensions {
fn name() -> &'static ::HeaderName {
Expand Down

0 comments on commit 2177abb

Please sign in to comment.