mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-15 07:54:33 +00:00
e5d3169e1c
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.
8 lines
108 B
C
8 lines
108 B
C
#ifndef _PROTO_WURFL_H
|
|
#define _PROTO_WURFL_H
|
|
|
|
int ha_wurfl_init(void);
|
|
void ha_wurfl_deinit(void);
|
|
|
|
#endif
|