diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-27 07:24:04 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-27 07:24:04 +0000 |
commit | e168ee1785eff740af1e5b6db635bdc7bda010fa (patch) | |
tree | 5db6ebde12654e76be5171548db8334791dcb896 /Source/charon/sa/child_sa.h | |
parent | 108b489f88ae4388c1eada3dfe8cceaba6adde85 (diff) | |
download | strongswan-e168ee1785eff740af1e5b6db635bdc7bda010fa.tar.bz2 strongswan-e168ee1785eff740af1e5b6db635bdc7bda010fa.tar.xz |
- add connection names to connections
- stroke status / ipsec status shows them
- added statusall for stroke
- added status by connection name
- some tests repaired, more to come
Diffstat (limited to 'Source/charon/sa/child_sa.h')
-rw-r--r-- | Source/charon/sa/child_sa.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/charon/sa/child_sa.h b/Source/charon/sa/child_sa.h index c49d85de9..6ccbff13f 100644 --- a/Source/charon/sa/child_sa.h +++ b/Source/charon/sa/child_sa.h @@ -118,12 +118,14 @@ struct child_sa_t { * The status of ESP/AH SAs is logged with the supplied logger in * a human readable form. * Supplying NULL as logger uses the internal child_sa logger - * to do the logging. + * to do the logging. The name is only a log-prefix without further + * meaning. * * @param this calling object * @param logger logger to use for logging + * @param name connection name */ - void (*log_status) (child_sa_t *this, logger_t *logger); + void (*log_status) (child_sa_t *this, logger_t *logger, char *name); /** * @brief Destroys a child_sa. |