Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/aws/http/websocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,20 +140,20 @@ struct aws_websocket_client_connection_options {
* Required.
* aws_websocket_client_connect() makes a copy.
*/
struct aws_socket_options *socket_options;
const struct aws_socket_options *socket_options;

/**
* Optional.
* aws_websocket_client_connect() deep-copies all contents except the `aws_tls_ctx`,
* which must outlive the the connection.
*/
struct aws_tls_connection_options *tls_options;
const struct aws_tls_connection_options *tls_options;

/**
* Optional
* Configuration options related to http proxy usage.
*/
struct aws_http_proxy_options *proxy_options;
const struct aws_http_proxy_options *proxy_options;

/**
* Required.
Expand Down