diff --git a/code/nel/include/nel/gui/group_html.h b/code/nel/include/nel/gui/group_html.h
index c96b67456..9c48149bf 100644
--- a/code/nel/include/nel/gui/group_html.h
+++ b/code/nel/include/nel/gui/group_html.h
@@ -17,8 +17,6 @@
#ifndef CL_GROUP_HTML_H
#define CL_GROUP_HTML_H
-#include
-
#include "nel/misc/types_nl.h"
#include "nel/gui/interface_group.h"
#include "nel/gui/group_scrolltext.h"
@@ -27,6 +25,9 @@
#include "nel/gui/group_table.h"
#include "nel/gui/libwww_types.h"
+// forward declaration
+typedef void CURLM;
+
typedef std::map TStyle;
namespace NLGUI
@@ -856,11 +857,6 @@ namespace NLGUI
// HtmlType download finished
void htmlDownloadFinished(const std::string &content, const std::string &type, long code);
-
- // cURL transfer callbacks
- static size_t curlHeaderCallback(char *buffer, size_t size, size_t nmemb, void *pCCurlWWWData);
- static size_t curlDataCallback(char *buffer, size_t size, size_t nmemb, void *pCCurlWWWData);
- static size_t curlProgressCallback(void *pCCurlWWWData, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow);
};
// adapter group that store y offset for inputs inside an html form
diff --git a/code/nel/include/nel/gui/libwww.h b/code/nel/include/nel/gui/libwww.h
index 892e07eb2..64258608e 100644
--- a/code/nel/include/nel/gui/libwww.h
+++ b/code/nel/include/nel/gui/libwww.h
@@ -20,11 +20,12 @@
#ifndef CL_LIB_WWW_H
#define CL_LIB_WWW_H
-#include
-
#include "nel/misc/rgba.h"
#include "nel/gui/libwww_types.h"
+// forward declaration to avoid curl.h inclusion everywhere
+typedef void CURL;
+
namespace NLGUI
{
class CCtrlBaseButton;
diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp
index 45398102b..fdf32f44c 100644
--- a/code/nel/src/gui/group_html.cpp
+++ b/code/nel/src/gui/group_html.cpp
@@ -49,6 +49,8 @@
#include "nel/gui/http_hsts.h"
#include "nel/gui/curl_certificates.h"
+#include
+
using namespace std;
using namespace NLMISC;
@@ -205,6 +207,47 @@ namespace NLGUI
std::map HeadersRecv;
};
+ // cURL transfer callbacks
+ // ***************************************************************************
+ static size_t curlHeaderCallback(char *buffer, size_t size, size_t nmemb, void *pCCurlWWWData)
+ {
+ CCurlWWWData * me = static_cast(pCCurlWWWData);
+ if (me)
+ {
+ std::string header;
+ header.append(buffer, size * nmemb);
+ me->setRecvHeader(header.substr(0, header.find_first_of("\n\r")));
+ }
+
+ return size * nmemb;
+ }
+
+ // ***************************************************************************
+ static size_t curlDataCallback(char *buffer, size_t size, size_t nmemb, void *pCCurlWWWData)
+ {
+ CCurlWWWData * me = static_cast(pCCurlWWWData);
+ if (me)
+ me->Content.append(buffer, size * nmemb);
+
+ return size * nmemb;
+ }
+
+ // ***************************************************************************
+ static size_t curlProgressCallback(void *pCCurlWWWData, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow)
+ {
+ CCurlWWWData * me = static_cast(pCCurlWWWData);
+ if (me)
+ {
+ if (dltotal > 0 || dlnow > 0 || ultotal > 0 || ulnow > 0)
+ {
+ nlwarning("> dltotal %d, dlnow %d, ultotal %d, ulnow %d, url '%s'", dltotal, dlnow, ultotal, ulnow, me->Url.c_str());
+ }
+ }
+
+ // return 1 to cancel download
+ return 0;
+ }
+
// Check if domain is on TrustedDomain
bool CGroupHTML::isTrustedDomain(const string &domain)
{
@@ -423,7 +466,7 @@ namespace NLGUI
download.data->sendHeaders(headers);
// catch headers
- curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, curlHeaderCallback);
+ curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, NLGUI::curlHeaderCallback);
curl_easy_setopt(curl, CURLOPT_WRITEHEADER, download.data);
std::string userAgent = options.appName + "/" + options.appVersion;
@@ -5476,17 +5519,17 @@ namespace NLGUI
_CurlWWW->sendHeaders(headers);
// catch headers for redirect
- curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, curlHeaderCallback);
+ curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, NLGUI::curlHeaderCallback);
curl_easy_setopt(curl, CURLOPT_WRITEHEADER, _CurlWWW);
// catch body
- curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curlDataCallback);
+ curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, NLGUI::curlDataCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, _CurlWWW);
#if LOG_DL
// progress callback
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
- curl_easy_setopt(curl, CURLOPT_XFERINFOFUNCTION, curlProgressCallback);
+ curl_easy_setopt(curl, CURLOPT_XFERINFOFUNCTION, NLGUI::curlProgressCallback);
curl_easy_setopt(curl, CURLOPT_XFERINFODATA, _CurlWWW);
#else
// progress off
@@ -6472,46 +6515,6 @@ namespace NLGUI
}
}
- // ***************************************************************************
- size_t CGroupHTML::curlHeaderCallback(char *buffer, size_t size, size_t nmemb, void *pCCurlWWWData)
- {
- CCurlWWWData * me = static_cast(pCCurlWWWData);
- if (me)
- {
- std::string header;
- header.append(buffer, size * nmemb);
- me->setRecvHeader(header.substr(0, header.find_first_of("\n\r")));
- }
-
- return size * nmemb;
- }
-
- // ***************************************************************************
- size_t CGroupHTML::curlDataCallback(char *buffer, size_t size, size_t nmemb, void *pCCurlWWWData)
- {
- CCurlWWWData * me = static_cast(pCCurlWWWData);
- if (me)
- me->Content.append(buffer, size * nmemb);
-
- return size * nmemb;
- }
-
- // ***************************************************************************
- size_t CGroupHTML::curlProgressCallback(void *pCCurlWWWData, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow)
- {
- CCurlWWWData * me = static_cast(pCCurlWWWData);
- if (me)
- {
- if (dltotal > 0 || dlnow > 0 || ultotal > 0 || ulnow > 0)
- {
- nlwarning("> dltotal %d, dlnow %d, ultotal %d, ulnow %d, url '%s'", dltotal, dlnow, ultotal, ulnow, me->Url.c_str());
- }
- }
-
- // return 1 to cancel download
- return 0;
- }
-
// ***************************************************************************
std::string CGroupHTML::HTMLOListElement::getListMarkerText() const
{
diff --git a/code/nel/src/gui/libwww.cpp b/code/nel/src/gui/libwww.cpp
index fef3d788e..2e9b4451a 100644
--- a/code/nel/src/gui/libwww.cpp
+++ b/code/nel/src/gui/libwww.cpp
@@ -19,6 +19,8 @@
#include "nel/gui/libwww.h"
#include "nel/gui/group_html.h"
+#include
+
using namespace NLMISC;
#ifdef DEBUG_NEW
diff --git a/code/ryzom/client/src/interface_v3/group_html_webig.cpp b/code/ryzom/client/src/interface_v3/group_html_webig.cpp
index 58d27c851..fe2fa5229 100644
--- a/code/ryzom/client/src/interface_v3/group_html_webig.cpp
+++ b/code/ryzom/client/src/interface_v3/group_html_webig.cpp
@@ -28,6 +28,8 @@
#include "../net_manager.h"
#include "../connection.h"
+#include
+
using namespace std;
using namespace NLMISC;