Add more options to the plugin

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2020-01-16 07:15:09 +01:00
parent c2594d1768
commit acd0b73a49
4 changed files with 13 additions and 7 deletions

View File

@@ -51,13 +51,18 @@ func setup(c *caddy.Controller) error {
return nil
}
func parse(c *caddy.Controller) error {
func parse(c *caddy.Controller) (*Traffic, error) {
for c.Next() {
args := c.RemainingArgs()
if len(args) != 0 {
return c.ArgErr()
return nil, c.ArgErr()
}
for c.NextBlock() {
switch c.Val() {
case "id":
}
}
}
return nil
return nil, nil
}