mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-21 22:44:43 +01:00
fix prefix option
This commit is contained in:
parent
fb22ef2ff8
commit
1f56e3b275
3
lg.py
3
lg.py
|
@ -37,6 +37,9 @@ def check_ipv6(n):
|
|||
def hello():
|
||||
return render_template('index.html')
|
||||
|
||||
@app.route("/<host>/<proto>/prefix/")
|
||||
@app.route("/<host>/<proto>/prefix/<prefix>")
|
||||
@app.route("/<host>/<proto>/prefix/<prefix>/<mask>")
|
||||
@app.route("/<host>/<proto>/prefix<all>/")
|
||||
@app.route("/<host>/<proto>/prefix<all>/<prefix>")
|
||||
@app.route("/<host>/<proto>/prefix<all>/<prefix>/<mask>")
|
||||
|
|
Loading…
Reference in a new issue