CLEANUP: map: it seems that the map were planed to be chained

It seems that the map were planed to be chained, but obviously
it is not the case. This patch remove the struct which should
be used gor the chain
This commit is contained in:
Thierry Fournier 2016-03-02 08:36:14 +01:00 committed by Willy Tarreau
parent ac9d467c5e
commit 9ba1d024db
1 changed files with 0 additions and 8 deletions

View File

@ -25,15 +25,7 @@
#include <types/pattern.h>
#include <types/sample.h>
/* These structs contains a string representation of the map. These struct is
* sorted by file. Permit to hot-add and hot-remove entries.
*
* "maps" is the list head. This list cotains all the mao file name identifier.
*/
extern struct list maps;
struct map_descriptor {
struct list list; /* used for listing */
struct sample_conv *conv; /* original converter descriptor */
struct pattern_head pat; /* the pattern matching associated to the map */
int do_free; /* set if <pat> is the orignal pat and must be freed */