strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Updated pkcs1 plugin to the new builder API
[strongswan.git]
/
src
/
libfast
/
controller.h
diff --git
a/src/libfast/controller.h
b/src/libfast/controller.h
index
9ac641f
..
1edf72e
100644
(file)
--- a/
src/libfast/controller.h
+++ b/
src/libfast/controller.h
@@
-11,8
+11,6
@@
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
- *
- * $Id$
*/
/**
*/
/**
@@
-44,14
+42,14
@@
typedef controller_t *(*controller_constructor_t)(context_t* context, void *para
* The controller handle function is called for each incoming request.
*/
struct controller_t {
* The controller handle function is called for each incoming request.
*/
struct controller_t {
-
+
/**
* Get the name of the controller.
*
* @return name of the controller
*/
char* (*get_name)(controller_t *this);
/**
* Get the name of the controller.
*
* @return name of the controller
*/
char* (*get_name)(controller_t *this);
-
+
/**
* Handle a HTTP request for that controller.
*
/**
* Handle a HTTP request for that controller.
*
@@
-69,11
+67,11
@@
struct controller_t {
*/
void (*handle)(controller_t *this, request_t *request,
char *p1, char *p2, char *p3, char *p4, char *p5);
*/
void (*handle)(controller_t *this, request_t *request,
char *p1, char *p2, char *p3, char *p4, char *p5);
-
+
/**
* Destroy the controller instance.
*/
void (*destroy) (controller_t *this);
};
/**
* Destroy the controller instance.
*/
void (*destroy) (controller_t *this);
};
-#endif /*
CONTROLLER_H_ @}
*/
+#endif /*
* CONTROLLER_H_ @}
*/