Stroika Library 3.0d23
 
Loading...
Searching...
No Matches
Frameworks/WebServer/Connection.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2026. All rights reserved
3 */
4
6
7 /*
8 ********************************************************************************
9 ***************************** WebServer::Connection ****************************
10 ********************************************************************************
11 */
12
13}
15 template <>
16 constexpr EnumNames<Frameworks::WebServer::Connection::Stats::State> DefaultNames<Frameworks::WebServer::Connection::Stats::State>::k{{{
19 {Frameworks::WebServer::Connection::Stats::State::ePausedIncompleteHeaders, L"PausedIncompleteHeaders"},
24 }}};
25}
@ eProcessingInterceptorChain
done reading (header part), now processing the message (interceptor chain)
@ eClosing
Done with connection and ready to close it down (maybe cleanly closing, or maybe with exception)
@ eReadyForNextMessage
Re-using connection for next message (keep-alive).
@ eFlushing
Finished processing message, and in process of flushing response, and checking/updating response head...