mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
ircd::server: Set peer error fron resolve/open_links exception handlers.
This commit is contained in:
parent
7c69eda4a6
commit
38e924992b
1 changed files with 4 additions and 0 deletions
|
@ -1280,6 +1280,7 @@ catch(const std::exception &e)
|
|||
e.what()
|
||||
};
|
||||
|
||||
err_set(std::current_exception());
|
||||
const ctx::exception_handler eh;
|
||||
close();
|
||||
}
|
||||
|
@ -1344,6 +1345,7 @@ catch(const std::exception &e)
|
|||
e.what()
|
||||
};
|
||||
|
||||
err_set(std::current_exception());
|
||||
const ctx::exception_handler eh;
|
||||
close();
|
||||
}
|
||||
|
@ -1406,6 +1408,7 @@ catch(const std::exception &e)
|
|||
e.what()
|
||||
};
|
||||
|
||||
err_set(std::current_exception());
|
||||
const ctx::exception_handler eh;
|
||||
close();
|
||||
}
|
||||
|
@ -1439,6 +1442,7 @@ catch(const std::exception &e)
|
|||
e.what()
|
||||
};
|
||||
|
||||
err_set(std::current_exception());
|
||||
const ctx::exception_handler eh;
|
||||
close();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue