removed trailing spaces ([[:space:]]+$)
This commit is contained in:
@@ -31,35 +31,35 @@ typedef struct session_t session_t;
|
||||
* Session handling class, instanciated for each user session.
|
||||
*/
|
||||
struct session_t {
|
||||
|
||||
|
||||
/**
|
||||
* Get the session ID of the session.
|
||||
*
|
||||
* @return session ID
|
||||
*/
|
||||
char* (*get_sid)(session_t *this);
|
||||
|
||||
|
||||
/**
|
||||
* Add a controller instance to the session.
|
||||
*
|
||||
* @param controller controller to add
|
||||
*/
|
||||
void (*add_controller)(session_t *this, controller_t *controller);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Add a filter instance to the session.
|
||||
*
|
||||
* @param filter filter to add
|
||||
*/
|
||||
void (*add_filter)(session_t *this, filter_t *filter);
|
||||
|
||||
|
||||
/**
|
||||
* Process a request in this session.
|
||||
*
|
||||
* @param request request to process
|
||||
*/
|
||||
void (*process)(session_t *this, request_t *request);
|
||||
|
||||
|
||||
/**
|
||||
* Destroy the session_t.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user