3
3
4
4
using System ;
5
5
using System . Collections . Generic ;
6
+ using System . IO ;
6
7
using System . Linq ;
7
8
using System . Reflection ;
8
9
using Microsoft . AspNetCore . Hosting ;
@@ -109,8 +110,19 @@ public void Start<TContext>(IHttpApplication<TContext> application)
109
110
110
111
if ( ! parsedAddress . Host . Equals ( "localhost" , StringComparison . OrdinalIgnoreCase ) )
111
112
{
112
- _disposables . Push ( engine . CreateServer (
113
- parsedAddress ) ) ;
113
+ try
114
+ {
115
+ _disposables . Push ( engine . CreateServer ( parsedAddress ) ) ;
116
+ }
117
+ catch ( AggregateException ex )
118
+ {
119
+ if ( ( ex . InnerException as UvException ) ? . StatusCode == Constants . EADDRINUSE )
120
+ {
121
+ throw new IOException ( $ "Failed to bind to address { parsedAddress } : address already in use.", ex ) ;
122
+ }
123
+
124
+ throw ;
125
+ }
114
126
}
115
127
else
116
128
{
@@ -120,24 +132,22 @@ public void Start<TContext>(IHttpApplication<TContext> application)
120
132
}
121
133
122
134
var ipv4Address = parsedAddress . WithHost ( "127.0.0.1" ) ;
123
- var exceptions = new List < UvException > ( ) ;
135
+ var exceptions = new List < Exception > ( ) ;
124
136
125
137
try
126
138
{
127
139
_disposables . Push ( engine . CreateServer ( ipv4Address ) ) ;
128
140
}
129
- catch ( AggregateException ex )
141
+ catch ( AggregateException ex ) when ( ex . InnerException is UvException )
130
142
{
131
- var uvException = ex . InnerException as UvException ;
132
-
133
- if ( uvException != null && uvException . StatusCode != Constants . EADDRINUSE )
143
+ if ( ( ex . InnerException as UvException ) . StatusCode == Constants . EADDRINUSE )
134
144
{
135
- _logger . LogWarning ( 0 , ex , $ "Unable to bind to { parsedAddress . ToString ( ) } on the IPv4 loopback interface.") ;
136
- exceptions . Add ( uvException ) ;
145
+ throw new IOException ( $ "Failed to bind to address { parsedAddress . ToString ( ) } on the IPv4 loopback interface: port already in use.", ex ) ;
137
146
}
138
147
else
139
148
{
140
- throw ;
149
+ _logger . LogWarning ( 0 , ex , $ "Unable to bind to { parsedAddress . ToString ( ) } on the IPv4 loopback interface.") ;
150
+ exceptions . Add ( ex . InnerException ) ;
141
151
}
142
152
}
143
153
@@ -147,26 +157,22 @@ public void Start<TContext>(IHttpApplication<TContext> application)
147
157
{
148
158
_disposables . Push ( engine . CreateServer ( ipv6Address ) ) ;
149
159
}
150
- catch ( AggregateException ex )
160
+ catch ( AggregateException ex ) when ( ex . InnerException is UvException )
151
161
{
152
- var uvException = ex . InnerException as UvException ;
153
-
154
- if ( uvException != null && uvException . StatusCode != Constants . EADDRINUSE )
162
+ if ( ( ex . InnerException as UvException ) . StatusCode == Constants . EADDRINUSE )
155
163
{
156
- _logger . LogWarning ( 0 , ex , $ "Unable to bind to { parsedAddress . ToString ( ) } on the IPv6 loopback interface.") ;
157
- exceptions . Add ( uvException ) ;
164
+ throw new IOException ( $ "Failed to bind to address { parsedAddress . ToString ( ) } on the IPv6 loopback interface: port already in use.", ex ) ;
158
165
}
159
166
else
160
167
{
161
- throw ;
168
+ _logger . LogWarning ( 0 , ex , $ "Unable to bind to { parsedAddress . ToString ( ) } on the IPv6 loopback interface.") ;
169
+ exceptions . Add ( ex . InnerException ) ;
162
170
}
163
171
}
164
172
165
173
if ( exceptions . Count == 2 )
166
174
{
167
- var ex = new AggregateException ( exceptions ) ;
168
- _logger . LogError ( 0 , ex , $ "Unable to bind to { parsedAddress . ToString ( ) } on any loopback interface.") ;
169
- throw ex ;
175
+ throw new IOException ( $ "Failed to bind to address { parsedAddress . ToString ( ) } .", new AggregateException ( exceptions ) ) ;
170
176
}
171
177
}
172
178
0 commit comments