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

Unified Diff: dart/sdk/lib/io/socket.dart

Issue 60293003: Version 0.8.10.5 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « dart/sdk/lib/io/secure_socket.dart ('k') | dart/tests/co19/co19-co19.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/io/socket.dart
===================================================================
--- dart/sdk/lib/io/socket.dart (revision 29908)
+++ dart/sdk/lib/io/socket.dart (working copy)
@@ -381,9 +381,9 @@
InternetAddress get address;
/**
- * Returns the remote host connected to by this socket.
+ * Returns the remote [InternetAddress] connected to by this socket.
*/
- String get remoteHost;
+ InternetAddress get remoteAddress;
/**
* Closes the socket. Returns a Future that completes with [this] when the
@@ -427,9 +427,9 @@
}
/**
- * A high-level class for communicating over a TCP socket.
+ * A high-level class for communicating over a TCP socket.
*
- * The [Socket] exposes both a [Stream] and a [IOSink] interface, making it
+ * The [Socket] exposes both a [Stream] and a [IOSink] interface, making it
* ideal for using together with other [Stream]s.
*/
abstract class Socket implements Stream<List<int>>, IOSink {
@@ -478,9 +478,9 @@
InternetAddress get address;
/**
- * Returns the remote host connected to by this socket.
+ * Returns the remote [InternetAddress] connected to by this socket.
*/
- String get remoteHost;
+ InternetAddress get remoteAddress;
}
« no previous file with comments | « dart/sdk/lib/io/secure_socket.dart ('k') | dart/tests/co19/co19-co19.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698