Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Unified Diff: net/base/auth.cc

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/auth.cc
diff --git a/net/base/auth.cc b/net/base/auth.cc
index 08b869cb7256a9545bfa1dd470008d12426b5955..8bc8516aaf16c6e88f019b6b5b58764d2638e409 100644
--- a/net/base/auth.cc
+++ b/net/base/auth.cc
@@ -16,6 +16,13 @@ bool AuthChallengeInfo::operator==(const AuthChallengeInfo& that) const {
this->realm == that.realm);
}
+void AuthChallengeInfo::Reset() {
+ is_proxy = false;
+ host_and_port.clear();
+ scheme.clear();
+ realm.clear();
+}
+
AuthChallengeInfo::~AuthChallengeInfo() {
}

Powered by Google App Engine
This is Rietveld 408576698