ESP32 HTTPS Server: /home/frank/Projekte/esp32/https_server/esp32_https_server/src/HTTPHeader.hpp Source File

1 #ifndef SRC_HTTPHEADER_HPP_

2 #define SRC_HTTPHEADER_HPP_

3 #include <Arduino.h>

4 

5 #include <string>

6 

8 

13 public:

14  HTTPHeader(const std::string &name, const std::string &value);

16  const std::string _name;

17  const std::string _value;

18  std::string print();

19 };

20 

29 

30 } /* namespace httpsserver */

31 

32 #endif /* SRC_HTTPHEADER_HPP_ */

Represents a single name/value pair of an HTTP header.

Definition: HTTPHeader.hpp:12

std::string normalizeHeaderName(std::string const &name)

Normalizes case in header names.

Definition: HTTPHeader.cpp:23

Definition: ConnectionContext.cpp:3