0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 13:18:58 +02:00

ircd::net: Terminate rather than throwing into noexcept.

This commit is contained in:
Jason Volk 2019-09-14 18:30:25 -07:00
parent 4c7f53fda9
commit a322ff762d

View file

@ -2076,7 +2076,7 @@ catch(...)
"Acceptor ALPN callback unhandled."
};
throw;
ircd::terminate();
}
bool
@ -2174,7 +2174,7 @@ catch(...)
"Acceptor SNI callback unhandled."
};
throw;
ircd::terminate();
}
void