summaryrefslogtreecommitdiffstats
path: root/mDNSResponder/mDNSMacOSX/coreBLE.h
diff options
context:
space:
mode:
Diffstat (limited to 'mDNSResponder/mDNSMacOSX/coreBLE.h')
-rw-r--r--mDNSResponder/mDNSMacOSX/coreBLE.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/mDNSResponder/mDNSMacOSX/coreBLE.h b/mDNSResponder/mDNSMacOSX/coreBLE.h
index cc00923a..29a0a17d 100644
--- a/mDNSResponder/mDNSMacOSX/coreBLE.h
+++ b/mDNSResponder/mDNSMacOSX/coreBLE.h
@@ -18,15 +18,22 @@
#ifndef _coreBLE_H_
#define _coreBLE_H_
+#if ENABLE_BLE_TRIGGERED_BONJOUR
+
#include "BLE.h"
@interface coreBLE : NSObject <CBCentralManagerDelegate, CBPeripheralManagerDelegate, CBPeripheralDelegate>
- (id)init;
-- (void) advertiseBrowses:(serviceHash_t) browseHash andRegistrations:(serviceHash_t) registeredHash;
+- (void) updateBeacon:(serviceHash_t) bloomFilter;
+- (void) startBeacon;
+- (bool) isBeaconing;
- (void) stopBeacon;
-- (void) updateScan:(bool) start;
+- (void) startScan;
+- (void) stopScan;
@end
+#endif // ENABLE_BLE_TRIGGERED_BONJOUR
+
#endif /* _coreBLE_H_ */