aboutsummaryrefslogtreecommitdiff
path: root/src/common/windows/http_upload.h
diff options
context:
space:
mode:
authorbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-10-23 17:50:59 +0000
committerbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-10-23 17:50:59 +0000
commit7772046297c84446a351130df9b0e762d36d5dc9 (patch)
tree465254d81774bb9db49451cf9ef0b02f5b2d7851 /src/common/windows/http_upload.h
parentAdd PUBLIC support to SourceLineResolver (resolve function names in Windows (diff)
downloadbreakpad-7772046297c84446a351130df9b0e762d36d5dc9.tar.xz
Update comments to reflect HTTPS support, r=mark.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@44 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/windows/http_upload.h')
-rw-r--r--src/common/windows/http_upload.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/windows/http_upload.h b/src/common/windows/http_upload.h
index 4ce581ea..d09db11d 100644
--- a/src/common/windows/http_upload.h
+++ b/src/common/windows/http_upload.h
@@ -27,7 +27,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// HTTPUpload provides a "nice" API to send a multipart HTTP POST
+// HTTPUpload provides a "nice" API to send a multipart HTTP(S) POST
// request using wininet. It currently supports requests that contain
// a set of string parameters (key/value pairs), and a file to upload.
@@ -52,7 +52,7 @@ class HTTPUpload {
// (i.e. it corresponds to the name= attribute on an <input type="file">.
// Parameter names must contain only printable ASCII characters,
// and may not contain a quote (") character.
- // Only HTTP URLs are currently supported. Returns true on success.
+ // Only HTTP(S) URLs are currently supported. Returns true on success.
// TODO(bryner): we should expose the response to the caller.
static bool SendRequest(const wstring &url,
const map<wstring, wstring> &parameters,