Files
openstreetmap-mod_tile-pyth…/cache_expire.h
Kai Krueger 299ac3bdd3 Refactor some functionality out of gen_tile.cpp
Move metatile handling and tile cache expiry out of gen_tile.cpp into
seperate files for reuse and cleaner structure.
2013-05-30 20:31:23 -06:00

20 lines
305 B
C

#ifndef CACHEEXPIRE_H
#define CACHEEXPIRE_H
#ifdef __cplusplus
extern "C" {
#endif
#define HTCP_EXPIRE_CACHE 1
#define HTCP_EXPIRE_CACHE_PORT "4827"
void cache_expire(int sock, char * host, char * uri, int x, int y, int z);
int init_cache_expire(char * htcphost);
#ifdef __cplusplus
}
#endif
#endif