MCPcopy Create free account
hub / github.com/catboost/catboost / TInRequestState

Class TInRequestState

library/cpp/neh/netliba_udp_http.cpp:144–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142 };
143
144 struct TInRequestState {
145 enum EState {
146 S_WAITING,
147 S_RESPONSE_SENDING,
148 S_CANCELED,
149 };
150
151 TInRequestState()
152 : State(S_WAITING)
153 {
154 }
155
156 TInRequestState(const TUdpAddress& address)
157 : State(S_WAITING)
158 , Address(address)
159 {
160 }
161
162 EState State;
163 TUdpAddress Address;
164 };
165
166 struct TOutRequestState {
167 enum EState {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected