XRootD
XrdHttpMonState.hh
Go to the documentation of this file.
1 #ifndef XRDHTTPMONSTATE_HH
2 #define XRDHTTPMONSTATE_HH
3 
4 // Request lifecycle state used for HTTP monitoring/classification.
5 //
6 enum class XrdHttpMonState : int {
7  NEW, // Uninitialised state
8  ACTIVE, // First call to process request
9  ERR_NET, // Network error
10  ERR_PROT, // Filesystem/XRootD error that did not result in a valid HTTP response
11  // (typically during a chunked response)
12  DONE // Final state
13 };
14 
15 #endif /* XRDHTTPMONSTATE_HH */
XrdHttpMonState