File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/BenchmarksApps/TLS/HttpSys Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 53
53
Console . WriteLine ( "TLS: " + tlsHandshakeFeature . Protocol ) ;
54
54
Console . WriteLine ( "-----" ) ;
55
55
}
56
- await next ( ) ;
56
+
57
+ await next ( context ) ;
57
58
} ) ;
58
59
}
59
60
65
66
connectionIds . Add ( context . Connection . Id ) ;
66
67
Console . WriteLine ( $ "[stats] unique connections established: { connectionIds . Count } ; fetched certificates: { fetchedCertsCounter } ") ;
67
68
68
- await next ( ) ;
69
+ await next ( context ) ;
69
70
} ) ;
70
71
}
71
72
@@ -131,7 +132,7 @@ void OnShutdown()
131
132
// we have a client cert here, and lets imagine we do the validation here
132
133
// if (clientCert.Thumbprint != "1234567890") throw new NotImplementedException();
133
134
134
- await next ( ) ;
135
+ await next ( context ) ;
135
136
} ) ;
136
137
}
137
138
You can’t perform that action at this time.
0 commit comments