lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
454 B
16 lines
454 B
#ifndef _STATUS_COUNTER_H_ |
|
#define _STATUS_COUNTER_H_ |
|
#include "first.h" |
|
|
|
#include <sys/types.h> |
|
|
|
#include "array.h" |
|
struct server; |
|
typedef struct server server; |
|
|
|
data_integer *status_counter_get_counter(server *srv, const char *s, size_t len); |
|
int status_counter_inc(server *srv, const char *s, size_t len); |
|
int status_counter_dec(server *srv, const char *s, size_t len); |
|
int status_counter_set(server *srv, const char *s, size_t len, int val); |
|
|
|
#endif
|
|
|