haproxy/include/proto/wurfl.h
Willy Tarreau e5d3169e1c CLEANUP: wurfl: reduce exposure in the rest of the code
The only reason wurfl/wurfl.h was needed outside of wurfl.c was to expose
wurfl_handle which is a pointer to a structure, referenced by global.h.
By just storing a void* there instead, we can confine all wurfl code to
wurfl.c, which is really nice.
2016-11-08 18:47:25 +01:00

8 lines
108 B
C

#ifndef _PROTO_WURFL_H
#define _PROTO_WURFL_H
int ha_wurfl_init(void);
void ha_wurfl_deinit(void);
#endif