| 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, |
no outgoing calls
no test coverage detected