summaryrefslogtreecommitdiffstats
path: root/net/base/host_port_pair.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/host_port_pair.cc')
-rw-r--r--net/base/host_port_pair.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/net/base/host_port_pair.cc b/net/base/host_port_pair.cc
new file mode 100644
index 0000000..06a95fb
--- /dev/null
+++ b/net/base/host_port_pair.cc
@@ -0,0 +1,14 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/base/host_port_pair.h"
+#include "base/string_util.h"
+
+namespace net {
+
+std::string HostPortPair::ToString() const {
+ return StringPrintf("[Host: %s, Port: %u]", host.c_str(), port);
+}
+
+} // namespace net