mirror of
https://github.com/matrix-construct/construct
synced 2025-04-07 18:33:47 +02:00
ircd::net: Terminate rather than throwing into noexcept.
This commit is contained in:
parent
4c7f53fda9
commit
a322ff762d
1 changed files with 2 additions and 2 deletions
|
@ -2076,7 +2076,7 @@ catch(...)
|
||||||
"Acceptor ALPN callback unhandled."
|
"Acceptor ALPN callback unhandled."
|
||||||
};
|
};
|
||||||
|
|
||||||
throw;
|
ircd::terminate();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
@ -2174,7 +2174,7 @@ catch(...)
|
||||||
"Acceptor SNI callback unhandled."
|
"Acceptor SNI callback unhandled."
|
||||||
};
|
};
|
||||||
|
|
||||||
throw;
|
ircd::terminate();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Add table
Reference in a new issue