From 95e06ad16955f3b49c117cc6f2d53bf4da747154 Mon Sep 17 00:00:00 2001 From: John Hernandez <129467592+H3rnand3zzz@users.noreply.github.com> Date: Wed, 19 Apr 2023 14:19:47 +0200 Subject: Add url support (downloading) to `/plugins install` Additional changes include code refactoring. --- tests/unittests/tools/stub_http_download.c | 2 ++ tests/unittests/tools/stub_plugin_download.c | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 tests/unittests/tools/stub_plugin_download.c (limited to 'tests/unittests') diff --git a/tests/unittests/tools/stub_http_download.c b/tests/unittests/tools/stub_http_download.c index f530b384..aff47200 100644 --- a/tests/unittests/tools/stub_http_download.c +++ b/tests/unittests/tools/stub_http_download.c @@ -3,6 +3,7 @@ #include #include +#include "common.h" typedef struct prof_win_t ProfWin; @@ -17,6 +18,7 @@ typedef struct http_download_t ProfWin* window; pthread_t worker; int cancel; + gboolean silent; } HTTPDownload; void* diff --git a/tests/unittests/tools/stub_plugin_download.c b/tests/unittests/tools/stub_plugin_download.c new file mode 100644 index 00000000..c54f60d2 --- /dev/null +++ b/tests/unittests/tools/stub_plugin_download.c @@ -0,0 +1,19 @@ +#ifndef TOOLS_PLUGIN_DOWNLOAD_H +#define TOOLS_PLUGIN_DOWNLOAD_H + +#include +typedef struct prof_win_t ProfWin; +typedef struct http_download_t HTTPDownload; + +void* +plugin_download_install(void* userdata) +{ + return NULL; +} + +void +plugin_download_add_download(HTTPDownload* download) +{ +} + +#endif -- cgit 1.4.1-2-gfad0