You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
325 B
16 lines
325 B
8 years ago
|
def getaddress(info):
|
||
|
"""
|
||
|
get ip address from router info dict
|
||
|
"""
|
||
|
for addr in info.addrs:
|
||
|
opts = addr.options
|
||
|
if b'host' in opts:
|
||
|
return opts[b'host']
|
||
|
|
||
|
def getcaps(info):
|
||
|
"""
|
||
|
extract router caps
|
||
|
"""
|
||
|
if b'caps' in info.options:
|
||
|
return info.options[b'caps']
|