mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-22 06:54:43 +01:00
estetic change
This commit is contained in:
parent
ff0b8c1259
commit
4c4e324768
2
lg.py
2
lg.py
|
@ -37,7 +37,7 @@ def hello():
|
||||||
@app.route("/<host>/<proto>/prefix/<prefix>")
|
@app.route("/<host>/<proto>/prefix/<prefix>")
|
||||||
@app.route("/<host>/<proto>/prefix/<prefix>/<mask>")
|
@app.route("/<host>/<proto>/prefix/<prefix>/<mask>")
|
||||||
def prefix(host, proto, prefix, mask=""):
|
def prefix(host, proto, prefix, mask=""):
|
||||||
output = '<h3>' + host + '(' + proto + ') show route for ' + prefix + '/' + mask + '</h3>'
|
output = '<h3>' + host + '(' + proto + ') show route for ' + prefix + (mask and '/' + mask or '' ) + '</h3>'
|
||||||
|
|
||||||
# security check
|
# security check
|
||||||
if ( (proto == "ipv6" and check_ipv6(prefix)) or (proto == "ipv4" and check_ipv4(prefix)) ) and check_mask(mask):
|
if ( (proto == "ipv6" and check_ipv6(prefix)) or (proto == "ipv4" and check_ipv4(prefix)) ) and check_mask(mask):
|
||||||
|
|
Loading…
Reference in a new issue