| 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; | 5 part of vmservice_io; |
| 6 | 6 |
| 7 class Server { | 7 class Server { |
| 8 int port; | 8 int port; |
| 9 static ContentType jsonContentType = ContentType.parse('application/json'); | 9 static ContentType jsonContentType = ContentType.parse('application/json'); |
| 10 final VmService service; | 10 final VmService service; |
| 11 HttpServer _server; | 11 HttpServer _server; |
| 12 | 12 |
| 13 Server(this.service, this.port); | 13 Server(this.service, this.port); |
| 14 | 14 |
| 15 void _requestHandler(HttpRequest request) { | 15 void _requestHandler(HttpRequest request) { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 port = s.port; | 61 port = s.port; |
| 62 _server = s; | 62 _server = s; |
| 63 _server.listen(_requestHandler); | 63 _server.listen(_requestHandler); |
| 64 if (display_message) { | 64 if (display_message) { |
| 65 print('VmService listening on port $port'); | 65 print('VmService listening on port $port'); |
| 66 } | 66 } |
| 67 return s; | 67 return s; |
| 68 }); | 68 }); |
| 69 } | 69 } |
| 70 } | 70 } |
| OLD | NEW |