| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of vmservice_io; | 5 part of vmservice_io; |
| 6 | 6 |
| 7 class WebSocketClient extends Client { | 7 class WebSocketClient extends Client { |
| 8 static const int PARSE_ERROR_CODE = 4000; | 8 static const int PARSE_ERROR_CODE = 4000; |
| 9 static const int BINARY_MESSAGE_ERROR_CODE = 4001; | 9 static const int BINARY_MESSAGE_ERROR_CODE = 4001; |
| 10 static const int NOT_MAP_ERROR_CODE = 4002; | 10 static const int NOT_MAP_ERROR_CODE = 4002; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 Future startServer() { | 121 Future startServer() { |
| 122 return HttpServer.bind(ip, port).then((s) { | 122 return HttpServer.bind(ip, port).then((s) { |
| 123 // Only display message when port is automatically selected. | 123 // Only display message when port is automatically selected. |
| 124 var display_message = (ip != '127.0.0.1' || port != 8181); | 124 var display_message = (ip != '127.0.0.1' || port != 8181); |
| 125 // Retrieve port. | 125 // Retrieve port. |
| 126 port = s.port; | 126 port = s.port; |
| 127 _server = s; | 127 _server = s; |
| 128 _server.listen(_requestHandler); | 128 _server.listen(_requestHandler); |
| 129 if (display_message) { | 129 if (display_message) { |
| 130 print('VMService listening on $ip:$port'); | 130 print('Observatory listening on http://$ip:$port'); |
| 131 } | 131 } |
| 132 return s; | 132 return s; |
| 133 }); | 133 }); |
| 134 } | 134 } |
| 135 } | 135 } |
| OLD | NEW |