summaryrefslogtreecommitdiffstats
path: root/library/cpp/http/client/fetch/parse.h
diff options
context:
space:
mode:
authorqrort <[email protected]>2022-12-02 11:31:25 +0300
committerqrort <[email protected]>2022-12-02 11:31:25 +0300
commitb1f4ffc9c8abff3ba58dc1ec9a9f92d2f0de6806 (patch)
tree2a23209faf0fea5586a6d4b9cee60d1b318d29fe /library/cpp/http/client/fetch/parse.h
parent559174a9144de40d6bb3997ea4073c82289b4974 (diff)
remove kikimr/driver DEPENDS
Diffstat (limited to 'library/cpp/http/client/fetch/parse.h')
-rw-r--r--library/cpp/http/client/fetch/parse.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/library/cpp/http/client/fetch/parse.h b/library/cpp/http/client/fetch/parse.h
deleted file mode 100644
index dacfa9bf845..00000000000
--- a/library/cpp/http/client/fetch/parse.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include "fetch_result.h"
-#include <library/cpp/uri/http_url.h>
-
-namespace NHttpFetcher {
- void ParseUrl(const TStringBuf url, THttpURL::EKind& kind, TString& host, ui16& port);
-
- void ParseHttpResponse(TResult& result, IInputStream& stream, THttpURL::EKind kind,
- TStringBuf host, ui16 port);
-
- void ParseHttpResponse(TResult& result, IInputStream& stream, const TString& url);
-
-}