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

Class TInRequestState

library/cpp/netliba/v6/udp_http.cpp:163–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161 };
162
163 struct TInRequestState {
164 enum EState {
165 S_WAITING,
166 S_RESPONSE_SENDING,
167 S_CANCELED,
168 };
169 EState State;
170 TUdpAddress Address;
171
172 TInRequestState()
173 : State(S_WAITING)
174 {
175 }
176 TInRequestState(const TUdpAddress& address)
177 : State(S_WAITING)
178 , Address(address)
179 {
180 }
181 };
182
183 enum EHttpPacket {
184 PKT_REQUEST,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected