Exemple #1
0
def get_tethering_passphrase():
    info = connman.get_technology_info('wifi')
    if 'TetheringPassphrase' in info:
        return str(info['TetheringPassphrase'])
    return None
Exemple #2
0
def get_tethering_SSID():
    info = connman.get_technology_info('wifi')
    if 'TetheringIdentifier' in info:
        return str(info['TetheringIdentifier'])
    return None
Exemple #3
0
def get_tethering_passphrase():
    info = connman.get_technology_info('wifi')
    if 'TetheringPassphrase' in info:
        return str(info['TetheringPassphrase'])
    return None
Exemple #4
0
def get_tethering_SSID():
    info = connman.get_technology_info('wifi')
    if 'TetheringIdentifier' in info:
        return str(info['TetheringIdentifier'])
    return None
Exemple #5
0
def get_tethering_passphrase():
    info = connman.get_technology_info("wifi")
    if "TetheringPassphrase" in info:
        return str(info["TetheringPassphrase"])
    return None
Exemple #6
0
def get_tethering_SSID():
    info = connman.get_technology_info("wifi")
    if "TetheringIdentifier" in info:
        return str(info["TetheringIdentifier"])
    return None