mirror of
https://github.com/bettercap/bettercap
synced 2025-07-12 08:07:00 -07:00
new: implemented ble.recon (ref #74)
This commit is contained in:
parent
536614068c
commit
7fe6cd232c
10 changed files with 443 additions and 2 deletions
11
modules/ble_options_darwin.go
Normal file
11
modules/ble_options_darwin.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package modules
|
||||
|
||||
import "github.com/bettercap/gatt"
|
||||
|
||||
var defaultBLEClientOptions = []gatt.Option{
|
||||
gatt.MacDeviceRole(gatt.CentralManager),
|
||||
}
|
||||
|
||||
var defaultBLEServerOptions = []gatt.Option{
|
||||
gatt.MacDeviceRole(gatt.PeripheralManager),
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue