diff options
author | Tobias Weimer <tweimer@users.noreply.github.com> | 2017-01-11 19:11:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-11 19:11:47 +0100 |
commit | c8e1c429321ed8aa2efce0fc00b6dfd08f1b2735 (patch) | |
tree | d42d7f80eebd393d461d2e169de8acfab5a5b69e /plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp | |
parent | bb03623fd3ba7b9cc456da2c9504bad87b80ace0 (diff) | |
parent | e967fe266fa6211be0a490a567a66d6abf544167 (diff) |
Merge pull request #669 from White-Tiger/mine
SendSS: fixed uploadpie upload by using HTTPS
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp b/plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp index 731bdc08f2..d354b0aaa1 100644 --- a/plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp +++ b/plugins/SendScreenshotPlus/src/CSendHost_uploadpie.cpp @@ -26,6 +26,7 @@ CSendHost_UploadPie::~CSendHost_UploadPie() { } +static const char kHostURL[] = "https://uploadpie.com/"; //--------------------------------------------------------------------------- int CSendHost_UploadPie::Send() { @@ -45,10 +46,10 @@ int CSendHost_UploadPie::Send() //{"expire",HTTPFORM_INT(3)},// 6h //{"expire",HTTPFORM_INT(4)},// 1d //{"expire",HTTPFORM_INT(5)},// 1w - //{"x",HTTPFORM_INT(130)},// ?? - //{"y",HTTPFORM_INT(17)},// ?? + //{"x",HTTPFORM_INT(130)},// relative X coordinate of "BAKE FILE" button (unused?) + //{"y",HTTPFORM_INT(17)},// relative Y coordinate of "BAKE FILE" button (unused?) }; - int error = HTTPFormCreate(&m_nlhr, REQUEST_POST, "http://uploadpie.com/", frm, sizeof(frm) / sizeof(HTTPFormData)); + int error = HTTPFormCreate(&m_nlhr, REQUEST_POST, kHostURL, frm, sizeof(frm) / sizeof(HTTPFormData)); mir_free(tmp); if (error) return !m_bAsync; @@ -73,11 +74,11 @@ void CSendHost_UploadPie::SendThread(void* obj) char* url = reply->pData; do { char* pos; - if ((url = strstr(url, "http://uploadpie.com/"))) { - for (pos = url + 21; (*pos >= '0'&&*pos <= '9') || (*pos >= 'a'&&*pos <= 'z') || (*pos >= 'A'&&*pos <= 'Z') || *pos == '_' || *pos == '-' || *pos == '"' || *pos == '\''; ++pos) { + if ((url = strstr(url, kHostURL))) { + for (pos = url + _countof(kHostURL)-1; (*pos >= '0'&&*pos <= '9') || (*pos >= 'a'&&*pos <= 'z') || (*pos >= 'A'&&*pos <= 'Z') || *pos == '_' || *pos == '-' || *pos == '"' || *pos == '\''; ++pos) { if (*pos == '"' || *pos == '\'') break; } - if (url + 21 != pos && (*pos == '"' || *pos == '\'')) { + if (url + _countof(kHostURL)-1 != pos && (*pos == '"' || *pos == '\'')) { *pos = '\0'; break; } |