diff options
author | Martin Willi <martin@revosec.ch> | 2011-12-08 16:19:54 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-03-20 17:31:15 +0100 |
commit | 69adeb5bf25b9938a0aff34718ece9d2be4f32ef (patch) | |
tree | 941300cdb29ae0459ae697eb2ab933d62effc5b3 /src/libcharon/sa/tasks/xauth_request.h | |
parent | c6d0098c1b8ae90579458987b9a901178c897640 (diff) | |
download | strongswan-69adeb5bf25b9938a0aff34718ece9d2be4f32ef.tar.bz2 strongswan-69adeb5bf25b9938a0aff34718ece9d2be4f32ef.tar.xz |
Replace xauth_request task with a new stub where we reimplement it
Diffstat (limited to 'src/libcharon/sa/tasks/xauth_request.h')
-rw-r--r-- | src/libcharon/sa/tasks/xauth_request.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/libcharon/sa/tasks/xauth_request.h b/src/libcharon/sa/tasks/xauth_request.h deleted file mode 100644 index 6324ca0de..000000000 --- a/src/libcharon/sa/tasks/xauth_request.h +++ /dev/null @@ -1,37 +0,0 @@ - -/** - * @defgroup xauth_request xauth_request - * @{ @ingroup tasks - */ - -#ifndef XAUTH_REQUEST_H_ -#define XAUTH_REQUEST_H_ - -typedef struct xauth_request_t xauth_request_t; - -#include <library.h> -#include <sa/ike_sa.h> -#include <sa/tasks/task.h> - -/** - * Task of type XAUTH_REQUEST, gets the username and password from the ISAKMP_SA - * initializer. - */ -struct xauth_request_t { - - /** - * Implements the task_t interface - */ - task_t task; -}; - -/** - * Create a new xauth_request task. - * - * @param ike_sa IKE_SA this task works for - * @param initiator TRUE for initiator - * @return ike_config task to handle by the task_manager - */ -xauth_request_t *xauth_request_create(ike_sa_t *ike_sa, bool initiator); - -#endif /** XAUTH_REQUEST_H_ @}*/ |