File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/InformaticsGateway/Services/HealthLevel7 Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change
1
+ general :
2
+ vulnerabilities :
3
+ - CVE-2018-8292
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ public Task StartAsync(CancellationToken cancellationToken)
64
64
{
65
65
var task = Task . Run ( async ( ) =>
66
66
{
67
+ _tcpListener . Start ( ) ;
67
68
await BackgroundProcessing ( cancellationToken ) . ConfigureAwait ( true ) ;
68
69
} , CancellationToken . None ) ;
69
70
@@ -90,7 +91,6 @@ private async Task BackgroundProcessing(CancellationToken cancellationToken)
90
91
try
91
92
{
92
93
WaitUntilAvailable ( _configuration . Value . Hl7 . MaximumNumberOfConnections ) ;
93
-
94
94
var client = await _tcpListener . AcceptTcpClientAsync ( cancellationToken ) . ConfigureAwait ( false ) ;
95
95
_logger . ClientConnected ( ) ;
96
96
You can’t perform that action at this time.
0 commit comments