mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-05 00:00:45 -04:00
Raise an alert if kernel SA installation fails
This commit is contained in:
parent
24f30ec92f
commit
bcf3147e0a
@ -114,6 +114,8 @@ enum alert_t {
|
||||
/** traffic selectors do not match, arguments are two linked_list_t
|
||||
* containing traffic_selector_t for initiator and for responder */
|
||||
ALERT_TS_MISMATCH,
|
||||
/** Installation of IPsec SAs failed, argument is child_sa_t */
|
||||
ALERT_INSTALL_CHILD_SA_FAILED,
|
||||
/** IKE_SA deleted because of "replace" unique policy, no argument */
|
||||
ALERT_UNIQUE_REPLACE,
|
||||
/** IKE_SA deleted because of "keep" unique policy, no arguement */
|
||||
|
@ -552,6 +552,8 @@ static status_t select_and_install(private_child_create_t *this,
|
||||
(status_i != SUCCESS) ? "inbound " : "",
|
||||
(status_i != SUCCESS && status_o != SUCCESS) ? "and ": "",
|
||||
(status_o != SUCCESS) ? "outbound " : "");
|
||||
charon->bus->alert(charon->bus, ALERT_INSTALL_CHILD_SA_FAILED,
|
||||
this->child_sa);
|
||||
return FAILED;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user