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.
35 lines
588 B
35 lines
588 B
#ifndef _MOD_MAGNET_CACHE_H_ |
|
#define _MOD_MAGNET_CACHE_H_ |
|
#include "first.h" |
|
|
|
#include "base_decls.h" |
|
#include "buffer.h" |
|
|
|
#include <lua.h> |
|
|
|
typedef struct { |
|
buffer name; |
|
buffer etag; |
|
|
|
lua_State *L; |
|
} script; |
|
|
|
typedef struct { |
|
script **ptr; |
|
uint32_t used; |
|
uint32_t size; |
|
} script_cache; |
|
|
|
#if 0 |
|
__attribute_cold__ |
|
__attribute_malloc__ |
|
__attribute_returns_nonnull__ |
|
script_cache *script_cache_init(void); |
|
#endif |
|
|
|
__attribute_cold__ |
|
void script_cache_free_data(script_cache *cache); |
|
|
|
lua_State *script_cache_get_script(script_cache *cache, const buffer *name, int etag_flags); |
|
|
|
#endif
|
|
|