Exemplo n.º 1
0
def stop_advertising (sock):
    try:
        _bt.sdp_stop_advertising (sock._sock)
    except _bt.error as e:
        raise BluetoothError (str (e))
Exemplo n.º 2
0
def stop_advertising(sock):
    try:
        _bt.sdp_stop_advertising(sock._sock)
    except _bt.error, e:
        raise BluetoothError(str(e))
Exemplo n.º 3
0
def stop_advertising(sock):
    try:
        _bt.sdp_stop_advertising(sock._sock)
    except _bt.error as e:
        raise BluetoothError(*e.args)