Chromium Code Reviews| Index: pkg/docgen/lib/docgen.dart |
| =================================================================== |
| --- pkg/docgen/lib/docgen.dart (revision 33012) |
| +++ pkg/docgen/lib/docgen.dart (working copy) |
| @@ -765,7 +765,7 @@ |
| /// so it shouldn't have any external dependencies. |
| static void _runServer() { |
| // Launch a server to serve out of the directory dartdoc-viewer/client/web. |
| - HttpServer.bind('localhost', 8080).then((HttpServer httpServer) { |
| + HttpServer.bind(InternetAddress.ANY_IP_V6, 8080).then((HttpServer httpServer) { |
| print('Server launched. Navigate your browser to: ' |
| 'http://localhost:${httpServer.port}'); |
|
Emily Fortuna
2014/02/25 18:24:51
Update the printed address here?
|
| httpServer.listen((HttpRequest request) { |