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.
14 lines
408 B
14 lines
408 B
#ifndef _STATUS_COUNTER_H_ |
|
#define _STATUS_COUNTER_H_ |
|
|
|
#include <sys/types.h> |
|
|
|
#include "array.h" |
|
#include "base.h" |
|
|
|
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
|
|
|