Browse Source

Enable Radius as database type

Baptiste Jonglez 7 years ago
parent
commit
72c51ae3b5
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/bin/dhcp4/dhcp4_parser.yy

+ 1 - 0
src/bin/dhcp4/dhcp4_parser.yy

@@ -558,6 +558,7 @@ db_type: MEMFILE { $$ = ElementPtr(new StringElement("memfile", ctx.loc2pos(@1))
        | MYSQL { $$ = ElementPtr(new StringElement("mysql", ctx.loc2pos(@1))); }
        | POSTGRESQL { $$ = ElementPtr(new StringElement("postgresql", ctx.loc2pos(@1))); }
        | CQL { $$ = ElementPtr(new StringElement("cql", ctx.loc2pos(@1))); }
+       | RADIUS { $$ = ElementPtr(new StringElement("radius", ctx.loc2pos(@1))); }
        ;
 
 user: USER {