mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 15:04:42 +00:00
63963c62e7
Also during this process, a bug was found in appsession_refresh(). It would not automatically requeue the task in the queue, so the old sessions would not vanish.
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
#ifndef _COMMON_APPSESS_H
|
|
#define _COMMON_APPSESS_H
|
|
|
|
#define TBLSIZ 10
|
|
#define TBLCHKINT 5000 /* The time between two calls of appsession_refresh in ms */
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <common/chtbl.h>
|
|
#include <common/config.h>
|
|
#include <common/hashpjw.h>
|
|
#include <common/list.h>
|
|
#include <common/memory.h>
|
|
|
|
#include <types/task.h>
|
|
|
|
typedef struct appsessions {
|
|
char *sessid;
|
|
char *serverid;
|
|
struct timeval expire; /* next expiration time for this application session */
|
|
unsigned long int request_count;
|
|
} appsess;
|
|
|
|
extern struct pool_head *pool2_appsess;
|
|
|
|
struct app_pool {
|
|
struct pool_head *sessid;
|
|
struct pool_head *serverid;
|
|
};
|
|
|
|
extern struct app_pool apools;
|
|
extern int have_appsession;
|
|
|
|
|
|
/* Callback for hash_lookup */
|
|
int match_str(const void *key1, const void *key2);
|
|
|
|
/* Callback for destroy */
|
|
void destroy(void *data);
|
|
|
|
#if defined(DEBUG_HASH)
|
|
static void print_table(const CHTbl *htbl);
|
|
#endif
|
|
|
|
void appsession_refresh(struct task *t, struct timeval *next);
|
|
int appsession_task_init(void);
|
|
int appsession_init(void);
|
|
void appsession_cleanup(void);
|
|
|
|
#endif /* _COMMON_APPSESS_H */
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|