File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -513,6 +513,9 @@ class QUICClient {
513
513
// Thrown due to invalid arguments on Win but also for network dropouts on all platforms
514
514
// Falls through
515
515
case 'ENETUNREACH' :
516
+ // Thrown when no route to the host is available.
517
+ // Falls through
518
+ case 'EHOSTUNREACH' :
516
519
{
517
520
this . dispatchEvent (
518
521
new events . EventQUICClientErrorSend (
Original file line number Diff line number Diff line change @@ -207,6 +207,9 @@ class QUICServer {
207
207
// Thrown due to invalid arguments on Win but also for network dropouts on all platforms
208
208
// Falls through
209
209
case 'ENETUNREACH' :
210
+ // Thrown when no route to the host is available.
211
+ // Falls through
212
+ case 'EHOSTUNREACH' :
210
213
{
211
214
this . dispatchEvent (
212
215
new events . EventQUICClientErrorSend (
You can’t perform that action at this time.
0 commit comments