mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-12 06:24:56 +00:00
93b38d9191
Moved 51Degrees code from src/haproxy.c, src/sample.c and src/cfgparse.c into a separate files src/51d.c and include/import/51d.h. Added two new functions init_51degrees() and deinit_51degrees(), updated Makefile and other code reorganizations related to 51Degrees.
10 lines
132 B
C
10 lines
132 B
C
#ifndef _IMPORT_51D_H
|
|
#define _IMPORT_51D_H
|
|
|
|
#include <51Degrees.h>
|
|
|
|
int init_51degrees(void);
|
|
void deinit_51degrees(void);
|
|
|
|
#endif
|