-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from cxx24/cxx23
handle chunked payload in connection.hpp
- Loading branch information
Showing
3 changed files
with
63 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// | ||
// Created by VanillaRTB on 10/9/24. | ||
// | ||
#pragma once | ||
#ifndef VANILLA_RTB_DATA_READ_RESULT_HPP | ||
#define VANILLA_RTB_DATA_READ_RESULT_HPP | ||
/// Result of data read. | ||
namespace http::server { | ||
enum data_read_result { complete, indeterminate }; | ||
} | ||
#endif // VANILLA_RTB_DATA_READ_RESULT_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters