Skip to content

Commit

Permalink
Update coro_http_connection.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
helintongh committed Nov 12, 2023
1 parent 8629f95 commit 41bacaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cinatra/coro_http_connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ class coro_http_connection
std::function<void(const uint64_t &conn_id)> quit_cb_ = nullptr;
bool checkout_timeout_ = false;
std::atomic<std::chrono::system_clock::time_point> last_rwtime_;
uint64_t max_part_size_ = 0;
uint64_t max_part_size_ = 8 * 1024 * 1024;

websocket ws_;
#ifdef CINATRA_ENABLE_SSL
Expand All @@ -556,4 +556,4 @@ class coro_http_connection
bool use_ssl_ = false;
#endif
};
} // namespace cinatra
} // namespace cinatra

0 comments on commit 41bacaf

Please sign in to comment.