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

Side by Side Diff: sdk/lib/io/io.dart

Issue 11414009: Secure server sockets for dart:io. Add TlsServerSocket class, providing SSL server sockets. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 /** 5 /**
6 * The IO library is used for Dart server applications, 6 * The IO library is used for Dart server applications,
7 * which run on a stand-alone Dart VM from the command line. 7 * which run on a stand-alone Dart VM from the command line.
8 * *This library does not work in browser based applications.* 8 * *This library does not work in browser based applications.*
9 * 9 *
10 * This library allows you to work with files, directories, 10 * This library allows you to work with files, directories,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #source('platform.dart'); 43 #source('platform.dart');
44 #source('platform_impl.dart'); 44 #source('platform_impl.dart');
45 #source('process.dart'); 45 #source('process.dart');
46 #source('socket.dart'); 46 #source('socket.dart');
47 #source('socket_stream_impl.dart'); 47 #source('socket_stream_impl.dart');
48 #source('stdio.dart'); 48 #source('stdio.dart');
49 #source('stream_util.dart'); 49 #source('stream_util.dart');
50 #source('string_stream.dart'); 50 #source('string_stream.dart');
51 #source('timer_impl.dart'); 51 #source('timer_impl.dart');
52 #source('tls_socket.dart'); 52 #source('tls_socket.dart');
53 #source('tls_server_socket.dart');
53 #source('websocket.dart'); 54 #source('websocket.dart');
54 #source('websocket_impl.dart'); 55 #source('websocket_impl.dart');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698