nginx-quic/src/core/ngx_garbage_collector.h

31 lines
638 B
C
Raw Normal View History

/*
* Copyright (C) Igor Sysoev
*/
2003-11-18 18:34:08 -03:00
#ifndef _NGX_GARBAGE_COLLECTOR_H_INCLUDED_
#define _NGX_GARBAGE_COLLECTOR_H_INCLUDED_
typedef struct ngx_gc_s ngx_gc_t;
typedef int (*ngx_gc_handler_pt) (ngx_gc_t *ctx, ngx_str_t *name,
ngx_dir_t *dir);
struct ngx_gc_s {
ngx_path_t *path;
u_int deleted;
off_t freed;
ngx_gc_handler_pt handler;
ngx_log_t *log;
};
2003-12-08 17:48:12 -03:00
int ngx_garbage_collector_temp_handler(ngx_gc_t *ctx, ngx_str_t *name,
2003-11-18 18:34:08 -03:00
ngx_dir_t *dir);
#endif /* _NGX_GARBAGE_COLLECTOR_H_INCLUDED_ */