| 216 | } |
| 217 | |
| 218 | bool MakeFullRequest(TMessage& msg, const TStringBuf headers, const TStringBuf content, const TStringBuf contentType, ERequestType reqType, ERequestFlags reqFlags) { |
| 219 | return MakeFullRequestImpl(msg, {}, msg.Data, headers, content, contentType, reqType, reqFlags); |
| 220 | } |
| 221 | |
| 222 | bool MakeFullRequest(TMessage& msg, const TConstArrayRef<TString> urlParts, const TStringBuf headers, const TStringBuf content, const TStringBuf contentType, ERequestType reqType, ERequestFlags reqFlags) { |
| 223 | return MakeFullRequestImpl(msg, {}, urlParts, headers, content, contentType, reqType, reqFlags); |
no test coverage detected