aboutsummaryrefslogtreecommitdiffstats
path: root/src/manager/lib/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager/lib/session.h')
-rw-r--r--src/manager/lib/session.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/manager/lib/session.h b/src/manager/lib/session.h
index a66b1a8e2..d18545876 100644
--- a/src/manager/lib/session.h
+++ b/src/manager/lib/session.h
@@ -24,7 +24,6 @@
#define SESSION_H_
#include "request.h"
-#include "response.h"
#include "controller.h"
typedef struct session_t session_t;
@@ -53,9 +52,8 @@ struct session_t {
* @brief Process a request in this session.
*
* @param request request to process
- * @param response response to send
*/
- void (*process)(session_t *this, request_t *request, response_t *response);
+ void (*process)(session_t *this, request_t *request);
/**
* @brief Destroy the session_t.