diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-02-19 07:44:57 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-02-19 07:44:57 +0100 |
commit | 9b4a8e1ced4b5add600c1577714f99ad5637770e (patch) | |
tree | c4f2259739a0423dad966eb833d2156d58d4cdc6 /src/libtnccs/tnc/tnccs/tnccs.h | |
parent | 2c1219c2179fc56a1f35684e7474ea5f8ade5322 (diff) | |
download | strongswan-9b4a8e1ced4b5add600c1577714f99ad5637770e.tar.bz2 strongswan-9b4a8e1ced4b5add600c1577714f99ad5637770e.tar.xz |
added parameter descriptions
Diffstat (limited to 'src/libtnccs/tnc/tnccs/tnccs.h')
-rw-r--r-- | src/libtnccs/tnc/tnccs/tnccs.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/libtnccs/tnc/tnccs/tnccs.h b/src/libtnccs/tnc/tnccs/tnccs.h index 81d393684..fd3e5cabb 100644 --- a/src/libtnccs/tnc/tnccs/tnccs.h +++ b/src/libtnccs/tnc/tnccs/tnccs.h @@ -77,22 +77,29 @@ struct tnccs_t { /** * Get underlying TNC IF-T transport protocol + * + * @return TNC IF-T transport protocol */ tnc_ift_type_t (*get_transport)(tnccs_t *this); /** * Set underlying TNC IF-T transport protocol - + * + * @param transport TNC IF-T transport protocol */ void (*set_transport)(tnccs_t *this, tnc_ift_type_t transport); /** * Get type of TNC Client authentication + * + * @return TNC Client authentication type */ u_int32_t (*get_auth_type)(tnccs_t *this); /** * Set type of TNC Client authentication + * + * @param auth_type TNC Client authentication type */ void (*set_auth_type)(tnccs_t *this, u_int32_t auth_type); |