You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/05/18 17:15:54 UTC

incubator-mynewt-core git commit: BLE Host - Enable security manager by default.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/090_dev b54399551 -> 04ace8e6c


BLE Host - Enable security manager by default.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/04ace8e6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/04ace8e6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/04ace8e6

Branch: refs/heads/090_dev
Commit: 04ace8e6c36bbc0863f785032e7abb65745becd6
Parents: b543995
Author: Christopher Collins <cc...@apache.org>
Authored: Wed May 18 10:15:40 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Wed May 18 10:15:40 2016 -0700

----------------------------------------------------------------------
 net/nimble/include/nimble/nimble_opt.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/04ace8e6/net/nimble/include/nimble/nimble_opt.h
----------------------------------------------------------------------
diff --git a/net/nimble/include/nimble/nimble_opt.h b/net/nimble/include/nimble/nimble_opt.h
index 024f289..604db86 100644
--- a/net/nimble/include/nimble/nimble_opt.h
+++ b/net/nimble/include/nimble/nimble_opt.h
@@ -52,10 +52,10 @@
 #define NIMBLE_OPT_WHITELIST                    1
 #endif
 
-/** HOST / CONTROLLER: Security manager.  Disabled by default. */
+/** HOST / CONTROLLER: Security manager.  Enabled by default. */
 
 #ifndef NIMBLE_OPT_SM
-#define NIMBLE_OPT_SM                           0
+#define NIMBLE_OPT_SM                           1
 #endif