Return to status_counter.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / src |
lighttpd 1.4.41
#ifndef _STATUS_COUNTER_H_ #define _STATUS_COUNTER_H_ #include "first.h" #include "array.h" #include "base.h" #include <sys/types.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