| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #import("dart:isolate"); | 5 import "dart:isolate"; |
| 6 #import("dart:crypto"); | 6 import "dart:crypto"; |
| 7 #import("dart:io"); | 7 import "dart:io"; |
| 8 #import("dart:uri"); | 8 import "dart:uri"; |
| 9 #import("dart:utf"); | 9 import "dart:utf"; |
| 10 | 10 |
| 11 class Server { | 11 class Server { |
| 12 HttpServer server; | 12 HttpServer server; |
| 13 bool passwordChanged = false; | 13 bool passwordChanged = false; |
| 14 | 14 |
| 15 Server() : server = new HttpServer(); | 15 Server() : server = new HttpServer(); |
| 16 | 16 |
| 17 void start() { | 17 void start() { |
| 18 server.listen("127.0.0.1", 0); | 18 server.listen("127.0.0.1", 0); |
| 19 server.defaultRequestHandler = | 19 server.defaultRequestHandler = |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 main() { | 261 main() { |
| 262 testUrlUserInfo(); | 262 testUrlUserInfo(); |
| 263 testBasicNoCredentials(); | 263 testBasicNoCredentials(); |
| 264 testBasicCredentials(); | 264 testBasicCredentials(); |
| 265 testBasicAuthenticateCallback(); | 265 testBasicAuthenticateCallback(); |
| 266 // These teste are not normally run. They can be used for locally | 266 // These teste are not normally run. They can be used for locally |
| 267 // testing with another web server (e.g. Apache). | 267 // testing with another web server (e.g. Apache). |
| 268 //testLocalServerBasic(); | 268 //testLocalServerBasic(); |
| 269 //testLocalServerDigest(); | 269 //testLocalServerDigest(); |
| 270 } | 270 } |
| OLD | NEW |