aboutsummaryrefslogtreecommitdiffstats
path: root/api/direct_bt/HCIHandler.hpp
blob: 4e483b4ed54770619d8cffcdf0b506bc43ede21b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
/*
 * Author: Sven Gothel <sgothel@jausoft.com>
 * Copyright (c) 2020 Gothel Software e.K.
 * Copyright (c) 2020 ZAFENA AB
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#ifndef HCI_HANDLER_HPP_
#define HCI_HANDLER_HPP_

#include <cstring>
#include <string>
#include <cstdint>
#include <array>
#include <functional>

#include <mutex>
#include <atomic>
#include <thread>

#include <jau/darray.hpp>
#include <jau/environment.hpp>
#include <jau/ringbuffer.hpp>
#include <jau/java_uplink.hpp>
#include <jau/octets.hpp>
#include <jau/service_runner.hpp>

#include "BTTypes0.hpp"
#include "BTIoctl.hpp"
#include "HCIComm.hpp"
#include "HCITypes.hpp"
#include "MgmtTypes.hpp"

/**
 * - - - - - - - - - - - - - - -
 *
 * Module HCIHandler:
 *
 * - BT Core Spec v5.2: Vol 4, Part E Host Controller Interface (HCI)
 */
namespace direct_bt {

    /** \addtogroup DBTSystemAPI
     *
     *  @{
     */

    class HCIHandler; // forward

    /**
     * HCI Singleton runtime environment properties
     * <p>
     * Also see {@link DBTEnv::getExplodingProperties(const std::string & prefixDomain)}.
     * </p>
     */
    class HCIEnv : public jau::root_environment {
        friend class HCIHandler;

        private:
            HCIEnv() noexcept;

            const bool exploding; // just to trigger exploding properties

        public:
            /**
             * Poll timeout for HCI reader thread, defaults to 10s.
             * <p>
             * Environment variable is 'direct_bt.hci.reader.timeout'.
             * </p>
             */
            const jau::fraction_i64 HCI_READER_THREAD_POLL_TIMEOUT;

            /**
             * Timeout for HCI command status replies, excluding command complete, defaults to 3s.
             * <p>
             * Environment variable is 'direct_bt.hci.cmd.status.timeout'.
             * </p>
             */
            const jau::fraction_i64 HCI_COMMAND_STATUS_REPLY_TIMEOUT;

            /**
             * Timeout for HCI command complete replies, defaults to 10s.
             * This timeout is rather longer, as it may include waiting for pending command complete.
             * <p>
             * Environment variable is 'direct_bt.hci.cmd.complete.timeout'.
             * </p>
             */
            const jau::fraction_i64 HCI_COMMAND_COMPLETE_REPLY_TIMEOUT;

            /**
             * Poll period for certain HCI commands actively waiting for clearance, defaults to 125ms.
             * <p>
             * Used for LE_Create_Connection or Create_Connection
             * when waiting for any pending connection commands or the addressed device's disconnect command to been completed
             * up to HCI_COMMAND_COMPLETE_REPLY_TIMEOUT.
             * </p>
             * <p>
             * Environment variable is 'direct_bt.hci.cmd.complete.timeout'.
             * </p>
             */
            const jau::fraction_i64 HCI_COMMAND_POLL_PERIOD;

            /**
             * Small ringbuffer capacity for synchronized commands, defaults to 64 messages.
             * <p>
             * Environment variable is 'direct_bt.hci.ringsize'.
             * </p>
             */
            const int32_t HCI_EVT_RING_CAPACITY;

            /**
             * Debug all HCI event communication
             * <p>
             * Environment variable is 'direct_bt.debug.hci.event'.
             * </p>
             */
            const bool DEBUG_EVENT;

            /**
             * Debug all scanned HCI 'Advertising Data' (AD) 'Extended Inquiry Response' (EIR) packages.
             * <p>
             * Environment variable is 'direct_bt.debug.hci.scan_ad_eir'.
             * </p>
             */
            const bool DEBUG_SCAN_AD_EIR;

        private:
            /** Maximum number of packets to wait for until matching a sequential command. Won't block as timeout will limit. */
            const int32_t HCI_READ_PACKET_MAX_RETRY;

        public:
            static HCIEnv& get() noexcept {
                /**
                 * Thread safe starting with C++11 6.7:
                 *
                 * If control enters the declaration concurrently while the variable is being initialized,
                 * the concurrent execution shall wait for completion of the initialization.
                 *
                 * (Magic Statics)
                 *
                 * Avoiding non-working double checked locking.
                 */
                static HCIEnv e;
                return e;
            }
    };

    typedef jau::function<bool(const BDAddressAndType& /* addressAndType */,
                               const SMPPDUMsg&, const HCIACLData::l2cap_frame& /* source */)> HCISMPMsgCallback;
    typedef jau::cow_darray<HCISMPMsgCallback> HCISMPMsgCallbackList;

    /**
     * A thread safe singleton handler of the HCI control channel to one controller (BT adapter)
     * <p>
     * Implementation utilizes a lock free ringbuffer receiving data within its separate thread.
     * </p>
     * <p>
     * Controlling Environment variables, see {@link HCIEnv}.
     * </p>
     */
    class HCIHandler {
        public:
            enum DefaultsSizeT : jau::nsize_t {
                HCI_MAX_MTU = static_cast<jau::nsize_t>(HCIConstSizeT::PACKET_MAX_SIZE)
            };

            const HCIEnv & env;

        private:
            class HCIConnection {
                private:
                    BDAddressAndType addressAndType; // immutable
                    uint16_t handle; // mutable

                public:
                    HCIConnection(const BDAddressAndType& addressAndType_, const uint16_t handle_)
                    : addressAndType(addressAndType_), handle(handle_) {}

                    HCIConnection(const HCIConnection &o) = default;
                    HCIConnection(HCIConnection &&o) = default;
                    HCIConnection& operator=(const HCIConnection &o) = default;
                    HCIConnection& operator=(HCIConnection &&o) = default;

                    const BDAddressAndType & getAddressAndType() const { return addressAndType; }
                    uint16_t getHandle() const { return handle; }

                    void setHandle(uint16_t newHandle) { handle = newHandle; }

                    bool equals(const BDAddressAndType & other) const
                    { return addressAndType == other; }

                    bool operator==(const HCIConnection& rhs) const {
                        if( this == &rhs ) {
                            return true;
                        }
                        return addressAndType == rhs.addressAndType;
                    }

                    bool operator!=(const HCIConnection& rhs) const
                    { return !(*this == rhs); }

                    std::size_t hash_code() const noexcept {
                        return addressAndType.hash_code();
                    }

                    std::string toString() const {
                        return "HCIConnection[handle "+jau::to_hexstring(handle)+
                               ", address "+addressAndType.toString()+"]";
                    }
            };
            typedef std::shared_ptr<HCIConnection> HCIConnectionRef;

            static MgmtEvent::Opcode translate(HCIEventType evt, HCIMetaEventType met) noexcept;

            const uint16_t dev_id;
            jau::POctets rbuffer;
            HCIComm comm;
            hci_ufilter filter_mask;
            std::atomic<uint32_t> metaev_filter_mask;
            std::atomic<uint64_t> opcbit_filter_mask;

            inline bool filter_test_metaev(HCIMetaEventType mec) noexcept { return 0 != jau::test_bit_uint32(number(mec)-1, metaev_filter_mask); }
            inline void filter_put_metaevs(const uint32_t mask) noexcept { metaev_filter_mask=mask; }

            constexpr static void filter_clear_metaevs(uint32_t &mask) noexcept { mask=0; }
            constexpr static void filter_all_metaevs(uint32_t &mask) noexcept { mask=0xffffffffU; }
            inline static void filter_set_metaev(HCIMetaEventType mec, uint32_t &mask) noexcept { jau::set_bit_uint32(number(mec)-1, mask); }

            inline bool filter_test_opcbit(HCIOpcodeBit opcbit) noexcept { return 0 != jau::test_bit_uint64(number(opcbit), opcbit_filter_mask); }
            inline void filter_put_opcbit(const uint64_t mask) noexcept { opcbit_filter_mask=mask; }

            constexpr static void filter_clear_opcbit(uint64_t &mask) noexcept { mask=0; }
            constexpr static void filter_all_opcbit(uint64_t &mask) noexcept { mask=0xffffffffffffffffUL; }
            inline static void filter_set_opcbit(HCIOpcodeBit opcbit, uint64_t &mask) noexcept { jau::set_bit_uint64(number(opcbit), mask); }

            jau::service_runner hci_reader_service;
            jau::ringbuffer<std::unique_ptr<HCIEvent>, jau::nsize_t> hciEventRing;

            std::recursive_mutex mtx_sendReply; // for sendWith*Reply, process*Command, ..; Recurses from many..

            LE_Features le_ll_feats;
            /**
             * Cached bitfield of Local Supported Commands, 64 octets
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E, 6.27 (HCI) Supported Commands
             * BT Core Spec v5.2: Vol 4, Part E, 7.4.2 Read Local Supported Commands command
             * </pre>
             */
            uint8_t sup_commands[64];
            jau::relaxed_atomic_bool sup_commands_set;

            jau::sc_atomic_bool allowClose;
            std::atomic<BTMode> btMode;

            std::atomic<ScanType> currentScanType;
            jau::sc_atomic_bool advertisingEnabled;

            jau::darray<HCIConnectionRef> connectionList;
            jau::darray<HCIConnectionRef> disconnectCmdList;
            std::recursive_mutex mtx_connectionList; // Recurses from disconnect -> findTrackerConnection, addOrUpdateTrackerConnection

            /** Exclusive [le] connection command (status + pending completed) one at a time */
            std::mutex mtx_connect_cmd;

            /**
             * Returns a newly added HCIConnectionRef tracker connection with given parameters, if not existing yet.
             * <p>
             * In case the HCIConnectionRef tracker connection already exists,
             * its handle will be updated (see below) and reference returned.
             * <p>
             * Overwrite existing tracked connection handle with given _valid_ handle only, i.e. non zero!
             * </p>
             * @param address key to matching connection
             * @param addrType key to matching connection
             * @param handle ignored for existing tracker _if_ invalid, i.e. zero.
             */
            HCIConnectionRef addOrUpdateHCIConnection(jau::darray<HCIConnectionRef> &list,
                                                      const BDAddressAndType& addressAndType, const uint16_t handle) noexcept;
            HCIConnectionRef addOrUpdateTrackerConnection(const BDAddressAndType& addressAndType, const uint16_t handle) noexcept {
                return addOrUpdateHCIConnection(connectionList, addressAndType, handle);
            }
            HCIConnectionRef addOrUpdateDisconnectCmd(const BDAddressAndType& addressAndType, const uint16_t handle) noexcept {
                return addOrUpdateHCIConnection(disconnectCmdList, addressAndType, handle);
            }

            HCIConnectionRef findHCIConnection(jau::darray<HCIConnectionRef> &list, const BDAddressAndType& addressAndType) noexcept;
            HCIConnectionRef findTrackerConnection(const BDAddressAndType& addressAndType) noexcept {
                return findHCIConnection(connectionList, addressAndType);
            }
            HCIConnectionRef findDisconnectCmd(const BDAddressAndType& addressAndType) noexcept {
                return findHCIConnection(disconnectCmdList, addressAndType);
            }

            HCIConnectionRef findTrackerConnection(const uint16_t handle) noexcept;
            HCIConnectionRef removeTrackerConnection(const HCIConnectionRef conn) noexcept;
            int countPendingTrackerConnections() noexcept;
            int getTrackerConnectionCount() noexcept;

            HCIConnectionRef removeHCIConnection(jau::darray<HCIConnectionRef> &list, const uint16_t handle) noexcept;
            HCIConnectionRef removeTrackerConnection(const uint16_t handle) noexcept {
                return removeHCIConnection(connectionList, handle);
            }
            HCIConnectionRef removeDisconnectCmd(const uint16_t handle) noexcept {
                return removeHCIConnection(disconnectCmdList, handle);
            }

            /** One MgmtAdapterEventCallbackList per event type, allowing multiple callbacks to be invoked for each event */
            std::array<MgmtEventCallbackList, static_cast<uint16_t>(MgmtEvent::Opcode::MGMT_EVENT_TYPE_COUNT)> mgmtEventCallbackLists;
            inline bool isValidMgmtEventCallbackListsIndex(const MgmtEvent::Opcode opc) const noexcept {
                return static_cast<uint16_t>(opc) < mgmtEventCallbackLists.size();
            }

            HCISMPMsgCallbackList hciSMPMsgCallbackList;

            std::unique_ptr<MgmtEvent> translate(HCIEvent& ev) noexcept;
            std::unique_ptr<MgmtEvent> translate(HCICommand& ev) noexcept;

            std::unique_ptr<const SMPPDUMsg> getSMPPDUMsg(const HCIACLData::l2cap_frame & l2cap, const uint8_t * l2cap_data) const noexcept;
            void hciReaderWork(jau::service_runner& sr) noexcept;
            void hciReaderEndLocked(jau::service_runner& sr) noexcept;

            bool sendCommand(HCICommand &req, const bool quiet=false) noexcept;
            std::unique_ptr<HCIEvent> getNextReply(HCICommand &req, int32_t & retryCount, const jau::fraction_i64& replyTimeout) noexcept;
            std::unique_ptr<HCIEvent> getNextCmdCompleteReply(HCICommand &req, HCICommandCompleteEvent **res) noexcept;

            std::unique_ptr<HCIEvent> processCommandStatus(HCICommand &req, HCIStatusCode *status, const bool quiet=false) noexcept;

            template<typename hci_cmd_event_struct>
            std::unique_ptr<HCIEvent> processCommandComplete(HCICommand &req,
                                                             const hci_cmd_event_struct **res, HCIStatusCode *status,
                                                             const bool quiet=false) noexcept;
            template<typename hci_cmd_event_struct>
            std::unique_ptr<HCIEvent> receiveCommandComplete(HCICommand &req,
                                                             const hci_cmd_event_struct **res, HCIStatusCode *status,
                                                             const bool quiet=false) noexcept;

            template<typename hci_cmd_event_struct>
            const hci_cmd_event_struct* getReplyStruct(HCIEvent& event, HCIEventType evc, HCIStatusCode *status) noexcept;

            template<typename hci_cmd_event_struct>
            const hci_cmd_event_struct* getMetaReplyStruct(HCIEvent& event, HCIMetaEventType mec, HCIStatusCode *status) noexcept;

        public:
            HCIHandler(const uint16_t dev_id, const BTMode btMode=BTMode::NONE) noexcept;

        private:
            void zeroSupCommands() noexcept;
            bool initSupCommands() noexcept;

        public:
            /**
             * Reset all internal states, i.e. connection and disconnect lists.
             * <p>
             * Must be explicitly called with `powered_on=true` when adapter is powered on!
             * </p>
             * @param powered_on indicates whether the adapter is powered on or not
             * @see initSupCommands()
             */
            bool resetAllStates(const bool powered_on) noexcept;

            HCIHandler(const HCIHandler&) = delete;
            void operator=(const HCIHandler&) = delete;

            /**
             * Releases this instance after issuing {@link #close()}.
             */
            ~HCIHandler() noexcept { close(); }

            void close() noexcept;

            inline BTMode getBTMode() const noexcept { return btMode; }

            inline void setBTMode(const BTMode mode) noexcept { btMode = mode; }

            /** Returns true if this mgmt instance is open, connected and hence valid, otherwise false */
            bool isOpen() const noexcept {
                return true == allowClose.load() && comm.is_open();
            }

            /** Use extended scanning if HCI_LE_Set_Extended_Scan_Parameters and HCI_LE_Set_Extended_Scan_Enable is supported (Bluetooth 5.0). */
            bool use_ext_scan() const noexcept {
                return 0 != ( sup_commands[37] & ( 1 << 5 ) ) &&
                       0 != ( sup_commands[37] & ( 1 << 6 ) );
            }

            /** Use extended connection if HCI_LE_Extended_Create_Connection is supported (Bluetooth 5.0). */
            bool use_ext_conn() const noexcept {
                return 0 != ( sup_commands[37] & ( 1 << 7 ) );
            }

            /** Use extended advertising if LE_Features::LE_Ext_Adv is set (Bluetooth 5.0). */
            bool use_ext_adv() const noexcept {
                return is_set(le_ll_feats, LE_Features::LE_Ext_Adv);
            }

            ScanType getCurrentScanType() const noexcept { return currentScanType.load(); }
            void setCurrentScanType(const ScanType v) noexcept { currentScanType = v; }

            /**
             * Advertising is enabled via le_start_adv() or le_enable_adv().
             *
             * Advertising is active until either disabled via le_enable_adv(false) or a connection has been made.
             *
             * @return true if advertising is active, otherwise false.
             */
            bool isAdvertising() const noexcept { return advertisingEnabled.load(); }

            std::string toString() const noexcept;

        private:
            /**
             * Bring up this adapter into a POWERED functional state.
             * <p>
             * Currently used in resetAdapter() only.
             * </p>
             * @return HCIStatusCode
             */
            HCIStatusCode startAdapter();

            /**
             * Bring down this adapter into a non-POWERED non-functional state.
             * <p>
             * All allocated resources should be freed and the internal state being reset
             * in compliance to
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.3.2 Reset command
             * </pre>
             * </p>
             * <p>
             * Currently used in resetAdapter() only.
             * </p>
             * @return HCIStatusCode
             */
            HCIStatusCode stopAdapter();

        public:
            /**
             * Use post shutdown function, considered to be `noexcept`.
             *
             * `HCIStatusCode post_shutdown() noexcept`
             *
             * @return HCIStatusCode::SUCCESS to continue the process, otherwise to abort process.
             */
            typedef std::function<HCIStatusCode() /* noexcept */> PostShutdownFunc;

            /**
             * Complete adapter reset.
             *
             * The semantics are specific to the HCI host implementation,
             * however, it shall comply at least with the HCI Reset command.
             *
             * The adapter shall be shutdown into standby first, i.e. POWERED off,
             * then the adapter should be brought up into a POWERED functional state afterwards.
             *
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.3.2 Reset command
             * </pre>
             *
             * @param user_post_shutdown optional custom user function to be executed after successful adapter shutdown.
             *                           If function is not null and returns false, the adapter will not be brought up again.
             *
             * @return HCIStatusCode
             */
            HCIStatusCode resetAdapter(PostShutdownFunc user_post_shutdown);

            /**
             * HCI Reset Command
             *
             * Consider using resetAdapter().
             *
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.3.2 Reset command
             * </pre>
             * @see resetAdapter()
             */
            HCIStatusCode reset() noexcept;

            HCIStatusCode getLocalVersion(HCILocalVersion &version) noexcept;

            /**
             * Return previously fetched LE_Features for the controller via initSupCommands() via resetAllStates()
             * <pre>
             * BT Core Spec v5.2: Vol 6, Part B, 4.6 (LE LL) Feature Support
             *
             * BT Core Spec v5.2: Vol 4, Part E, 7.8.3 LE Read Local Supported Features command
             * </pre>
             * @param res reference for the resulting LE_Features
             * @return HCIStatusCode
             * @see initSupCommands()
             * @see resetAllStates()
             */
            LE_Features le_get_local_features() noexcept { return le_ll_feats; }

        private:

            /**
             * Return HCIStatusCode::SUCCESS if isOpen() and the conn_handle is tracked
             * and matching the give peerAddressAndType
             *
             * @param caller caller method base-name for DBG_ or ERR_PRINT.
             * @param conn_handle
             * @param peerAddressAndType
             * @param addUntrackedConn true adds connection if not tracked,
             *                         otherwise return HCIStatusCode::INVALID_HCI_COMMAND_PARAMETERS (default)
             * @return HCIStatusCode
             */
            HCIStatusCode check_open_connection(const std::string& caller,
                                                const uint16_t conn_handle, const BDAddressAndType& peerAddressAndType,
                                                const bool addUntrackedConn = false);

        public:
            /**
             * Request supported LE_Features from remote device.
             * <pre>
             * BT Core Spec v5.2: Vol 6, Part B, 4.6 (LE LL) Feature Support
             *
             * BT Core Spec v5.2: Vol 4, Part E, 7.8.21 LE Read Remote Features command
             * </pre>
             *
             * Method returns immediate without result.
             *
             * Result is being delivered off-thread via HCIMetaEventType::LE_REMOTE_FEAT_COMPLETE, see
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E, 7.7.65.4 LE Read Remote Features Complete event
             * </pre>
             * @return HCIStatusCode
             */
            HCIStatusCode le_read_remote_features(const uint16_t conn_handle, const BDAddressAndType& peerAddressAndType) noexcept;

        private:
            /**
             * Sets LE scanning parameters.
             * <pre>
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.64 LE Set Extended Scan Parameters command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.10 LE Set Scan Parameters command
             *
             *
             * BT Core Spec v5.2: Vol 6 LE, Part B Link Layer: 4.4.3 Scanning State
             * </pre>
             * <p>
             * Scan parameters control advertising (AD) Protocol Data Unit (PDU) delivery behavior.
             * </p>
             * <p>
             * Should not be called while LE scanning is active, otherwise HCIStatusCode::COMMAND_DISALLOWED will be returned.
             * </p>
             *
             * @param le_scan_active true enables delivery of active scanning PDUs, otherwise no scanning PDUs shall be sent (default)
             * @param own_mac_type HCILEOwnAddressType::PUBLIC (default) or random/private.
             * @param le_scan_interval in units of 0.625ms, default value 24 for 15ms; Value range [4 .. 0x4000] for [2.5ms .. 10.24s]
             * @param le_scan_window in units of 0.625ms, default value 24 for 15ms; Value range [4 .. 0x4000] for [2.5ms .. 10.24s]. Shall be <= le_scan_interval
             * @param filter_policy 0x00 accepts all PDUs (default), 0x01 only of whitelisted, ...
             */
            HCIStatusCode le_set_scan_param(const bool le_scan_active=false,
                                            const HCILEOwnAddressType own_mac_type=HCILEOwnAddressType::PUBLIC,
                                            const uint16_t le_scan_interval=24, const uint16_t le_scan_window=24,
                                            const uint8_t filter_policy=0x00) noexcept;

        public:
            /**
             * Starts or stops LE scanning.
             * <pre>
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.65 LE Set Extended Scan Enable command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.8.11 LE Set Scan Enable command
             * </pre>
             * @param enable true to enable discovery, otherwise false
             * @param filter_dup true to filter out duplicate AD PDUs (default), otherwise all will be reported.
             */
            HCIStatusCode le_enable_scan(const bool enable, const bool filter_dup=true) noexcept;

            /**
             * Start LE scanning, i.e. performs le_set_scan_param() and le_enable_scan() in one atomic operation.
             * <pre>
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.64 LE Set Extended Scan Parameters command (Bluetooth 5.0)
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.10 LE Set Scan Parameters command
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.65 LE Set Extended Scan Enable command (Bluetooth 5.0)
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.8.11 LE Set Scan Enable command
             * </pre>
             * <p>
             * Scan parameters control advertising (AD) Protocol Data Unit (PDU) delivery behavior.
             * </p>
             * <p>
             * Should not be called while LE scanning is active, otherwise HCIStatusCode::COMMAND_DISALLOWED will be returned.
             * </p>
             * <p>
             * Method will report errors.
             * </p>
             *
             * @param filter_dup true to filter out duplicate AD PDUs (default), otherwise all will be reported.
             * @param le_scan_active true enables delivery of active scanning PDUs like EIR w/ device name (default), otherwise no scanning PDUs shall be sent.
             * @param own_mac_type HCILEOwnAddressType::PUBLIC (default) or random/private.
             * @param le_scan_interval in units of 0.625ms, default value 24 for 15ms; Value range [4 .. 0x4000] for [2.5ms .. 10.24s]
             * @param le_scan_window in units of 0.625ms, default value 24 for 15ms; Value range [4 .. 0x4000] for [2.5ms .. 10.24s]. Shall be <= le_scan_interval
             * @param filter_policy 0x00 accepts all PDUs (default), 0x01 only of whitelisted, ...
             * @see le_read_local_features()
             */
            HCIStatusCode le_start_scan(const bool filter_dup=true,
                                        const bool le_scan_active=true,
                                        const HCILEOwnAddressType own_mac_type=HCILEOwnAddressType::PUBLIC,
                                        const uint16_t le_scan_interval=24, const uint16_t le_scan_window=24,
                                        const uint8_t filter_policy=0x00) noexcept;

            /**
             * Establish a connection to the given LE peer.
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.8.66 LE Extended Create Connection command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.8.12 LE Create Connection command
             * </pre>
             * <p>
             * Set window to the same value as the interval, enables continuous scanning.
             * </p>
             * <p>
             * The supervising timeout period is the time it takes before a devices gives up on the link if no packets are received.
             * Hence this parameter influences the responsiveness on a link loss.
             * A too small number may render the link too unstable, it should be at least 6 times of the connection interval.
             * <br>
             * To detect a link loss one can also send a regular ping to check whether the peripheral is still responding, see BTGattHandler::ping().
             * </p>
             * <p>
             * Implementation tries to mitigate HCIStatusCode::COMMAND_DISALLOWED failure due to any pending connection commands,
             * waiting actively up to HCIEnv::HCI_COMMAND_COMPLETE_REPLY_TIMEOUT, testing every HCIEnv::HCI_COMMAND_POLL_PERIOD if resolved.<br>
             * <br>
             * In case of no resolution, i.e. another HCI_LE_Create_Connection command is pending,
             * HCIStatusCode::COMMAND_DISALLOWED will be returned by the underlying HCI host implementation.
             * </p>
             * <p>
             * Implementation tries to mitigate HCIStatusCode::CONNECTION_ALREADY_EXISTS failure due to a specific pending disconnect command,
             * waiting actively up to HCIEnv::HCI_COMMAND_COMPLETE_REPLY_TIMEOUT, testing every HCIEnv::HCI_COMMAND_POLL_PERIOD if resolved.<br>
             * <br>
             * In case of no resolution, i.e. the connection persists,
             * HCIStatusCode::CONNECTION_ALREADY_EXISTS will be returned by the underlying HCI host implementation.
             * </p>
             * @param peer_bdaddr
             * @param peer_mac_type
             * @param own_mac_type
             * @param le_scan_interval in units of 0.625ms, default value 24 for 15ms; Value range [4 .. 0x4000] for [2.5ms .. 10.24s]
             * @param le_scan_window in units of 0.625ms, default value 24 for 15ms; Value range [4 .. 0x4000] for [2.5ms .. 10.24s]. Shall be <= le_scan_interval
             * @param conn_interval_min in units of 1.25ms, default value 8 for 10ms; Value range [6 .. 3200] for [7.5ms .. 4000ms]
             * @param conn_interval_max in units of 1.25ms, default value 12 for 15ms; Value range [6 .. 3200] for [7.5ms .. 4000ms]
             * @param conn_latency slave latency in units of connection events, default value 0; Value range [0 .. 0x01F3]. See Range of [0 - getHCIMaxConnLatency()].
             * @param supervision_timeout in units of 10ms, default value >= 10 x conn_interval_max; Value range [0xA-0x0C80] for [100ms - 32s]. We use 500ms minimum, i.e. getHCIConnSupervisorTimeout(0, 15, ::HCIConstInt::LE_CONN_MIN_TIMEOUT_MS).
             * @return
             */
            HCIStatusCode le_create_conn(const EUI48 &peer_bdaddr,
                                         const HCILEPeerAddressType peer_mac_type=HCILEPeerAddressType::PUBLIC,
                                         const HCILEOwnAddressType own_mac_type=HCILEOwnAddressType::PUBLIC,
                                         const uint16_t le_scan_interval=24, const uint16_t le_scan_window=24,
                                         const uint16_t conn_interval_min=8, const uint16_t conn_interval_max=12,
                                         const uint16_t conn_latency=0, const uint16_t supervision_timeout=getHCIConnSupervisorTimeout(0, 15)) noexcept;

            /**
             * Establish a connection to the given BREDR (non LE).
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.1.5 Create Connection command
             * </pre>
             * <p>
             * Implementation tries to mitigate HCIStatusCode::COMMAND_DISALLOWED failure due to any pending connection commands,
             * waiting actively up to HCIEnv::HCI_COMMAND_COMPLETE_REPLY_TIMEOUT, testing every HCIEnv::HCI_COMMAND_POLL_PERIOD if resolved.<br>
             * <br>
             * In case of no resolution, i.e. another HCI_Create_Connection command is pending,
             * HCIStatusCode::COMMAND_DISALLOWED will be returned by the underlying HCI host implementation.
             * </p>
             * <p>
             * Implementation tries to mitigate HCIStatusCode::CONNECTION_ALREADY_EXISTS failure due to a specific pending disconnect command,
             * waiting actively up to HCIEnv::HCI_COMMAND_COMPLETE_REPLY_TIMEOUT, testing every HCIEnv::HCI_COMMAND_POLL_PERIOD if resolved.<br>
             * <br>
             * In case of no resolution, i.e. the connection persists,
             * HCIStatusCode::CONNECTION_ALREADY_EXISTS will be returned by the underlying HCI host implementation.
             * </p>
             */
            HCIStatusCode create_conn(const EUI48 &bdaddr,
                                     const uint16_t pkt_type=HCI_DM1 | HCI_DM3 | HCI_DM5 | HCI_DH1 | HCI_DH3 | HCI_DH5,
                                     const uint16_t clock_offset=0x0000, const uint8_t role_switch=0x01) noexcept;

            /**
             * Disconnect an established connection.
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E HCI: 7.1.6 Disconnect command
             * </pre>
             */
            HCIStatusCode disconnect(const uint16_t conn_handle, const BDAddressAndType& peerAddressAndType,
                                     const HCIStatusCode reason=HCIStatusCode::REMOTE_USER_TERMINATED_CONNECTION) noexcept;

            /**
             * Request and return LE_PHYs bit for the given connection.
             * <pre>
             * BT Core Spec v5.2: Vol 4, Part E, 7.8.47 LE Read PHY command
             * </pre>
             *
             * Controller shall send a pending HCIMetaEventType::LE_PHY_UPDATE_COMPLETE event with SUCCESS
             * after issuing this command in all cases (change or unchanged PHYs).
             *
             * @param conn_handle
             * @param addressAndType
             * @param resTx reference for the resulting transmitter LE_PHYs bit
             * @param resRx reference for the resulting receiver LE_PHYs bit
             * @return HCIStatusCode
             * @since 2.4.0
             */
            HCIStatusCode le_read_phy(const uint16_t conn_handle, const BDAddressAndType& peerAddressAndType,
                                      LE_PHYs& resTx, LE_PHYs& resRx) noexcept;


            /**
             * Sets default preference of used LE_PHYs for all subsequent LE connections.
             *
             * BT Core Spec v5.2: Vol 4, Part E, 7.8.48 LE Set Default PHY command
             *
             * @param Tx transmitter LE_PHYs bit mask of preference if not set to LE_PHYs::NONE (ignored).
             * @param Rx receiver LE_PHYs bit mask of preference if not set to LE_PHYs::NONE (ignored).
             * @return
             * @since 2.4.0
             */
            HCIStatusCode le_set_default_phy(const LE_PHYs Tx, const LE_PHYs Rx) noexcept;

            /**
             * Sets preference of used LE_PHYs for the given connection.
             *
             * - BT Core Spec v5.2: Vol 4, Part E, 7.8.49 LE Set PHY command
             * - BT Core Spec v5.2: Vol 4, Part E, 7.7.65.12 LE PHY Update Complete event
             *
             * @param conn_handle
             * @param peerAddressAndType
             * @param Tx transmitter LE_PHYs bit mask of preference if not set to LE_PHYs::NONE (ignored).
             * @param Rx receiver LE_PHYs bit mask of preference if not set to LE_PHYs::NONE (ignored).
             * @return
             * @since 2.4.0
             */
            HCIStatusCode le_set_phy(const uint16_t conn_handle, const BDAddressAndType& peerAddressAndType,
                                     const LE_PHYs Tx, const LE_PHYs Rx) noexcept;

        private:
            /**
             * Sets LE advertising parameters.
             * <pre>
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.53 LE Set Extended Advertising Parameters command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.5 LE Set Advertising Parameters command
             * </pre>
             * <p>
             * Scan parameters control advertising (AD) Protocol Data Unit (PDU) delivery behavior.
             * </p>
             * <p>
             * Should not be called while LE scanning is active, otherwise HCIStatusCode::COMMAND_DISALLOWED will be returned.
             * </p>
             *
             * @param peer_bdaddr EUI48 of directed peer, defaults to EUI48::ANY_DEVICE (zero address)
             * @param own_mac_type HCILEOwnAddressType::PUBLIC (default) or random/private.
             * @param peer_mac_type HCILEOwnAddressType::PUBLIC (default) or random/private.
             * @param adv_interval_min in units of 0.625ms, default value 0x0800 for 1.28s; Value range [0x0020 .. 0x4000] for [20ms .. 10.24s]
             * @param adv_interval_max in units of 0.625ms, default value 0x0800 for 1.28s; Value range [0x0020 .. 0x4000] for [20ms .. 10.24s]
             * @param adv_type see AD_PDU_Type, default ::AD_PDU_Type::ADV_IND
             * @param adv_chan_map bit 0: chan 37, bit 1: chan 38, bit 2: chan 39, default is 0x07 (all 3 channels enabled)
             * @param filter_policy 0x00 accepts all PDUs (default), 0x01 only of whitelisted, ...
             */
            HCIStatusCode le_set_adv_param(const EUI48 &peer_bdaddr=EUI48::ANY_DEVICE,
                                           const HCILEOwnAddressType own_mac_type=HCILEOwnAddressType::PUBLIC,
                                           const HCILEOwnAddressType peer_mac_type=HCILEOwnAddressType::PUBLIC,
                                           const uint16_t adv_interval_min=0x0800, const uint16_t adv_interval_max=0x0800,
                                           const AD_PDU_Type adv_type=AD_PDU_Type::ADV_IND,
                                           const uint8_t adv_chan_map=0x07,
                                           const uint8_t filter_policy=0x00) noexcept;

            /**
             * Sets LE advertising data
             * <pre>
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.54 LE Set Extended Advertising Data command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.7 LE Set Advertising Data command (Bluetooth 4.0)
             * </pre>
             *
             * Advertising_Data_Length:
             * - Bluetooth 4.0: 0 -  31 octets
             * - Bluetooth 5.0: 0 - 251 octets, i.e. max-param 255 - 4 bytes cp-args
             *
             *
             * @param eir EInfoReport full ADV EIR
             * @param mask EIRDataType mask for EInfoReport to select advertisement EIR PDU data, defaults to EIRDataType::FLAGS | EIRDataType::NAME | EIRDataType::MANUF_DATA
             * @return HCIStatusCode::SUCCESS if successful, otherwise the HCIStatusCode error state
             */
            HCIStatusCode le_set_adv_data(const EInfoReport &eir,
                                          const EIRDataType mask = EIRDataType::FLAGS | EIRDataType::NAME | EIRDataType::MANUF_DATA) noexcept;

            /**
             * Sets LE scan-response data (active scanning)
             * <pre>
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.55 LE Set Extended Scan Response Data command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.8 LE Set Scan Response Data command (Bluetooth 4.0)
             * </pre>
             *
             * Advertising_Data_Length:
             * - Bluetooth 4.0: 0 -  31 octets
             * - Bluetooth 5.0: 0 - 251 octets, i.e. max-param 255 - 4 bytes cp-args
             *
             * @param eir EInfoReport full ADV EIR
             * @param mask EIRDataType mask for EInfoReport to select scan-response EIR PDU data, defaults to EIRDataType::SERVICE_UUID
             * @return HCIStatusCode::SUCCESS if successful, otherwise the HCIStatusCode error state
             */
            HCIStatusCode le_set_scanrsp_data(const EInfoReport &eir,
                                              const EIRDataType mask = EIRDataType::SERVICE_UUID) noexcept;

        public:
            /**
             * Enables or disabled advertising.
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.56 LE Set Extended Advertising Enable command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.9 LE Set Advertising Enable command
             *
             * Advertising is active until either disabled via le_enable_adv(false) or a connection has been made,
             * see isAdvertising().
             *
             * @param enable
             * @return HCIStatusCode::SUCCESS if successful, otherwise the HCIStatusCode error state
             * @since 2.4.0
             */
            HCIStatusCode le_enable_adv(const bool enable) noexcept;

            /**
             * Starts advertising
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.53 LE Set Extended Advertising Parameters command (Bluetooth 5.0)
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.54 LE Set Extended Advertising Data command (Bluetooth 5.0)
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.55 LE Set Extended Scan Response Data command (Bluetooth 5.0)
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.56 LE Set Extended Advertising Enable command (Bluetooth 5.0)
             *
             * if available, otherwise using
             *
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.5 LE Set Advertising Parameters command
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.7 LE Set Advertising Data command
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.8 LE Set Scan Response Data command
             * - BT Core Spec v5.2: Vol 4 HCI, Part E HCI Functional: 7.8.9 LE Set Advertising Enable command
             *
             * Advertising is active until either disabled via le_enable_adv(false) or a connection has been made,
             * see isAdvertising().
             *
             * TODO:
             * - Random address for privacy if desired!
             * - Consider SMP (security)
             *
             * @param eir Full ADV EIR EInfoReport
             * @param adv_mask EIRDataType mask for EInfoReport to select advertisement EIR PDU data, defaults to EIRDataType::FLAGS | EIRDataType::SERVICE_UUID
             * @param scanrsp_mask EIRDataType mask for EInfoReport to select scan-response (active scanning) EIR PDU data, defaults to EIRDataType::NAME | EIRDataType::CONN_IVAL
             * @param peer_bdaddr EUI48 of directed peer, defaults to EUI48::ANY_DEVICE (zero address)
             * @param own_mac_type HCILEOwnAddressType::PUBLIC (default) or random/private.
             * @param peer_mac_type HCILEOwnAddressType::PUBLIC (default) or random/private.
             * @param adv_interval_min in units of 0.625ms, default value 160 for 100ms; Value range [0x0020 .. 0x4000] for [20ms .. 10.24s]
             * @param adv_interval_max in units of 0.625ms, default value 480 for 300ms; Value range [0x0020 .. 0x4000] for [20ms .. 10.24s]
             * @param adv_type see AD_PDU_Type, default ::AD_PDU_Type::ADV_IND
             * @param adv_chan_map bit 0: chan 37, bit 1: chan 38, bit 2: chan 39, default is 0x07 (all 3 channels enabled)
             * @param filter_policy 0x00 accepts all PDUs (default), 0x01 only of whitelisted, ...
             * @return HCIStatusCode::SUCCESS if successful, otherwise the HCIStatusCode error state
             * @since 2.4.0
             */
            HCIStatusCode le_start_adv(const EInfoReport &eir,
                                       const EIRDataType adv_mask = EIRDataType::FLAGS | EIRDataType::SERVICE_UUID,
                                       const EIRDataType scanrsp_mask = EIRDataType::NAME | EIRDataType::CONN_IVAL,
                                       const EUI48 &peer_bdaddr=EUI48::ANY_DEVICE,
                                       const HCILEOwnAddressType own_mac_type=HCILEOwnAddressType::PUBLIC,
                                       const HCILEOwnAddressType peer_mac_type=HCILEOwnAddressType::PUBLIC,
                                       const uint16_t adv_interval_min=160, const uint16_t adv_interval_max=480,
                                       const AD_PDU_Type adv_type=AD_PDU_Type::ADV_IND,
                                       const uint8_t adv_chan_map=0x07,
                                       const uint8_t filter_policy=0x00) noexcept;

            /** MgmtEventCallback handling  */

            /**
             * Appends the given MgmtEventCallback to the named MgmtEvent::Opcode list,
             * if it is not present already (opcode + callback).
             * @param opc opcode index for callback list, the callback shall be added to
             * @param cb the to be added callback
             * @return true if newly added or already existing, false if given MgmtEvent::Opcode is out of supported range.
             */
            bool addMgmtEventCallback(const MgmtEvent::Opcode opc, const MgmtEventCallback &cb) noexcept;
            /** Returns count of removed given MgmtEventCallback from the named MgmtEvent::Opcode list. */
            int removeMgmtEventCallback(const MgmtEvent::Opcode opc, const MgmtEventCallback &cb) noexcept;
            /** Removes all MgmtEventCallbacks from the to the named MgmtEvent::Opcode list. */
            void clearMgmtEventCallbacks(const MgmtEvent::Opcode opc) noexcept;

            void addSMPMsgCallback(const HCISMPMsgCallback & l);
            int removeSMPMsgCallback(const HCISMPMsgCallback & l);

            /** Removes all MgmtEventCallbacks from all MgmtEvent::Opcode lists and all SMPSecurityReqCallbacks. */
            void clearAllCallbacks() noexcept;

            /** Manually send a MgmtEvent to all of its listeners. */
            void sendMgmtEvent(const MgmtEvent& event) noexcept;
    };

    /**@}*/

} // namespace direct_bt

#if 0
// Injecting specialization of std::hash to namespace std of our types above
// Would need to make direct_bt::HCIHandler::HCIConnection accessible
namespace std
{
    /** \addtogroup DBTSystemAPI
     *
     *  @{
     */

    template<> struct hash<direct_bt::HCIHandler::HCIConnection> {
        std::size_t operator()(direct_bt::HCIHandler::HCIConnection const& a) const noexcept {
            return a.hash_code();
        }
    };

    /**@}*/

}
#endif

#endif /* HCI_HANDLER_HPP_ */