aws-crt-cpp
C++ wrapper around the aws-c-* libraries. Provides Cross-Platform Transport Protocols and SSL/TLS implementations for C++.
Loading...
Searching...
No Matches
Classes | Namespaces | Typedefs | Enumerations
HttpConnection.h File Reference
#include <aws/http/connection.h>
#include <aws/http/proxy.h>
#include <aws/http/request_response.h>
#include <aws/crt/Types.h>
#include <aws/crt/io/Bootstrap.h>
#include <aws/crt/io/SocketOptions.h>
#include <aws/crt/io/TlsOptions.h>
#include <functional>
#include <memory>

Go to the source code of this file.

Classes

struct  Aws::Crt::Http::HttpRequestOptions
 
class  Aws::Crt::Http::HttpStream
 
struct  Aws::Crt::Http::ClientStreamCallbackData
 
class  Aws::Crt::Http::HttpClientStream
 
class  Aws::Crt::Http::HttpClientConnectionProxyOptions
 
class  Aws::Crt::Http::HttpClientConnectionOptions
 
class  Aws::Crt::Http::HttpClientConnection
 

Namespaces

namespace  Aws
 
namespace  Aws::Crt
 
namespace  Aws::Crt::Io
 
namespace  Aws::Crt::Http
 

Typedefs

using Aws::Crt::Http::HttpHeader = aws_http_header
 
using Aws::Crt::Http::OnConnectionSetup = std::function< void(const std::shared_ptr< HttpClientConnection > &connection, int errorCode)>
 
using Aws::Crt::Http::OnConnectionShutdown = std::function< void(HttpClientConnection &connection, int errorCode)>
 
using Aws::Crt::Http::OnIncomingHeaders = std::function< void(HttpStream &stream, enum aws_http_header_block headerBlock, const HttpHeader *headersArray, std::size_t headersCount)>
 
using Aws::Crt::Http::OnIncomingHeadersBlockDone = std::function< void(HttpStream &stream, enum aws_http_header_block block)>
 
using Aws::Crt::Http::OnIncomingBody = std::function< void(HttpStream &stream, const ByteCursor &data)>
 
using Aws::Crt::Http::OnStreamComplete = std::function< void(HttpStream &stream, int errorCode)>
 

Enumerations

enum class  Aws::Crt::Http::AwsHttpProxyAuthenticationType { Aws::Crt::Http::None , Aws::Crt::Http::Basic }
 
enum class  Aws::Crt::Http::AwsHttpProxyConnectionType { Aws::Crt::Http::Legacy = AWS_HPCT_HTTP_LEGACY , Aws::Crt::Http::Forwarding = AWS_HPCT_HTTP_FORWARD , Aws::Crt::Http::Tunneling = AWS_HPCT_HTTP_TUNNEL }
 
enum class  Aws::Crt::Http::HttpVersion { Aws::Crt::Http::Unknown = AWS_HTTP_VERSION_UNKNOWN , Aws::Crt::Http::Http1_0 = AWS_HTTP_VERSION_1_0 , Aws::Crt::Http::Http1_1 = AWS_HTTP_VERSION_1_1 , Aws::Crt::Http::Http2 = AWS_HTTP_VERSION_2 }