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