diff options
author | bryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-10-23 17:50:59 +0000 |
---|---|---|
committer | bryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-10-23 17:50:59 +0000 |
commit | 7772046297c84446a351130df9b0e762d36d5dc9 (patch) | |
tree | 465254d81774bb9db49451cf9ef0b02f5b2d7851 /src/client/windows/sender | |
parent | Add PUBLIC support to SourceLineResolver (resolve function names in Windows (diff) | |
download | breakpad-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/client/windows/sender')
-rw-r--r-- | src/client/windows/sender/crash_report_sender.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/windows/sender/crash_report_sender.h b/src/client/windows/sender/crash_report_sender.h index 39267243..19563b02 100644 --- a/src/client/windows/sender/crash_report_sender.h +++ b/src/client/windows/sender/crash_report_sender.h @@ -31,7 +31,7 @@ #define CLIENT_WINDOWS_SENDER_CRASH_REPORT_SENDER_H__ // CrashReportSender is a "static" class which provides an API to upload -// crash reports via HTTP. A crash report is formatted as a multipart POST +// crash reports via HTTP(S). A crash report is formatted as a multipart POST // request, which contains a set of caller-supplied string key/value pairs, // and a minidump file to upload. // @@ -52,7 +52,7 @@ class CrashReportSender { // name value pairs, as a multipart POST request to the given URL. // 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 SendCrashReport(const wstring &url, const map<wstring, wstring> ¶meters, |