| LEFT | RIGHT |
| (no file at all) | |
| 1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
| 2 | 2 |
| 3 // Internet / FTP | 3 // Internet / FTP |
| 4 #include <wininet.h> | 4 #include <wininet.h> |
| 5 | 5 |
| 6 // IP adapter | 6 // IP adapter |
| 7 #include <iphlpapi.h> | 7 #include <iphlpapi.h> |
| 8 | 8 |
| 9 #include "PluginSettings.h" | 9 #include "PluginSettings.h" |
| 10 #include "PluginSystem.h" | 10 #include "PluginSystem.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 bool CPluginClientBase::s_isErrorLogging = false; | 30 bool CPluginClientBase::s_isErrorLogging = false; |
| 31 | 31 |
| 32 | 32 |
| 33 CPluginClientBase::CPluginClientBase() | 33 CPluginClientBase::CPluginClientBase() |
| 34 { | 34 { |
| 35 } | 35 } |
| 36 | 36 |
| 37 | 37 |
| 38 CPluginClientBase::~CPluginClientBase() | 38 CPluginClientBase::~CPluginClientBase() |
| 39 { | 39 { |
| 40 } | |
| 41 | |
| 42 | |
| 43 CString& CPluginClientBase::UnescapeUrl(CString& url) | |
| 44 { | |
| 45 CString unescapedUrl; | |
| 46 DWORD cb = 2048; | |
| 47 | |
| 48 if (SUCCEEDED(::UrlUnescape(url.GetBuffer(), unescapedUrl.GetBufferSetLength(c
b), &cb, 0))) | |
| 49 { | |
| 50 unescapedUrl.ReleaseBuffer(); | |
| 51 unescapedUrl.Truncate(cb); | |
| 52 | |
| 53 url.ReleaseBuffer(); | |
| 54 url = unescapedUrl; | |
| 55 } | |
| 56 | |
| 57 return url; | |
| 58 } | 40 } |
| 59 | 41 |
| 60 void UnescapeUrl(std::wstring& url) | 42 void UnescapeUrl(std::wstring& url) |
| 61 { | 43 { |
| 62 try | 44 try |
| 63 { | 45 { |
| 64 DWORD result_length = INTERNET_MAX_URL_LENGTH; | 46 DWORD result_length = INTERNET_MAX_URL_LENGTH; |
| 65 std::unique_ptr<wchar_t[]> result(new wchar_t[result_length]); | 47 std::unique_ptr<wchar_t[]> result(new wchar_t[result_length]); |
| 66 HRESULT hr = UrlUnescapeW(const_cast<wchar_t*>(url.c_str()), result.get(), &
result_length, 0); | 48 HRESULT hr = UrlUnescapeW(const_cast<wchar_t*>(url.c_str()), result.get(), &
result_length, 0); |
| 67 if (hr == S_OK) | 49 if (hr == S_OK) |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 118 |
| 137 hasError = true; | 119 hasError = true; |
| 138 | 120 |
| 139 s_pluginErrors.erase(it); | 121 s_pluginErrors.erase(it); |
| 140 } | 122 } |
| 141 } | 123 } |
| 142 s_criticalSectionLocal.Unlock(); | 124 s_criticalSectionLocal.Unlock(); |
| 143 | 125 |
| 144 return hasError; | 126 return hasError; |
| 145 } | 127 } |
| LEFT | RIGHT |