43 lines
1.1 KiB
Dart
43 lines
1.1 KiB
Dart
import 'dart:io';
|
|
import 'package:platform_core/core.dart';
|
|
import 'package:platform_core/http.dart';
|
|
import 'package:platform_core/http2.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'common.dart';
|
|
|
|
void main() async {
|
|
var app = Application()
|
|
..encoders.addAll({
|
|
'gzip': gzip.encoder,
|
|
'deflate': zlib.encoder,
|
|
});
|
|
app.logger = Logger('protevus')..onRecord.listen(dumpError);
|
|
|
|
app.get('/', (req, res) => 'Hello HTTP/2!!!');
|
|
|
|
app.fallback((req, res) => throw PlatformHttpException.notFound(
|
|
message: 'No file exists at ${req.uri}'));
|
|
|
|
var ctx = SecurityContext()
|
|
..useCertificateChain('dev.pem')
|
|
..usePrivateKey('dev.key', password: 'dartdart');
|
|
|
|
try {
|
|
ctx.setAlpnProtocols(['h2'], true);
|
|
} catch (e, st) {
|
|
app.logger.severe(
|
|
'Cannot set ALPN protocol on server to `h2`. The server will only serve HTTP/1.x.',
|
|
e,
|
|
st,
|
|
);
|
|
}
|
|
|
|
var http1 = PlatformHttp(app);
|
|
var http2 = PlatformHttp2(app, ctx);
|
|
|
|
// HTTP/1.x requests will fallback to `PlatformHttp`
|
|
http2.onHttp1.listen(http1.handleRequest);
|
|
|
|
await http2.startServer('127.0.0.1', 3000);
|
|
print('Listening at ${http2.uri}');
|
|
}
|