You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by na...@apache.org on 2017/12/12 08:53:03 UTC

[mynewt-core] 01/01: Merge pull request #693 from michal-narajowski/mesh_friend_1

This is an automated email from the ASF dual-hosted git repository.

naraj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit f5abe19923581a954c5b884b3c29534727edd42d
Merge: 85fc884 77e3ef2
Author: MichaƂ Narajowski <mi...@codecoup.pl>
AuthorDate: Tue Dec 12 09:52:58 2017 +0100

    Merge pull request #693 from michal-narajowski/mesh_friend_1
    
    Complete Friend support ported from Zephyr

 apps/blemesh/src/main.c                            |   42 +-
 apps/blemesh/syscfg.yml                            |    1 -
 net/nimble/host/mesh/include/mesh/access.h         |  401 ++++
 net/nimble/host/mesh/include/mesh/cfg_cli.h        |  184 ++
 net/nimble/host/mesh/include/mesh/cfg_srv.h        |   69 +
 net/nimble/host/mesh/include/mesh/glue.h           |   79 +-
 net/nimble/host/mesh/include/mesh/health_cli.h     |   72 +
 net/nimble/host/mesh/include/mesh/health_srv.h     |   91 +
 net/nimble/host/mesh/include/mesh/main.h           |  325 +++
 net/nimble/host/mesh/include/mesh/mesh.h           |  626 +-----
 net/nimble/host/mesh/include/mesh/proxy.h          |   35 +
 net/nimble/host/mesh/include/mesh/slist.h          |  240 +++
 net/nimble/host/mesh/pkg.yml                       |    3 +
 net/nimble/host/mesh/src/access.c                  |  237 ++-
 net/nimble/host/mesh/src/access.h                  |   55 +-
 net/nimble/host/mesh/src/adv.c                     |  344 ++--
 net/nimble/host/mesh/src/adv.h                     |   73 +-
 net/nimble/host/mesh/src/beacon.c                  |   74 +-
 net/nimble/host/mesh/src/beacon.h                  |   19 +-
 net/nimble/host/mesh/src/cfg_cli.c                 | 1399 +++++++++++++
 net/nimble/host/mesh/src/{cfg.c => cfg_srv.c}      |  298 ++-
 net/nimble/host/mesh/src/crypto.c                  |   18 +-
 net/nimble/host/mesh/src/crypto.h                  |   14 +-
 net/nimble/host/mesh/src/foundation.h              |   59 +-
 net/nimble/host/mesh/src/friend.c                  | 1298 +++++++++++-
 net/nimble/host/mesh/src/friend.h                  |   56 +-
 net/nimble/host/mesh/src/glue.c                    |   16 +-
 net/nimble/host/mesh/src/health_cli.c              |  514 +++++
 .../host/mesh/src/{health.c => health_srv.c}       |  177 +-
 net/nimble/host/mesh/src/lpn.c                     |  394 ++--
 net/nimble/host/mesh/src/lpn.h                     |   67 +-
 net/nimble/host/mesh/src/mesh.c                    |  308 +--
 net/nimble/host/mesh/src/mesh_priv.h               |    3 +-
 net/nimble/host/mesh/src/net.c                     |  546 +++--
 net/nimble/host/mesh/src/net.h                     |  456 +++--
 net/nimble/host/mesh/src/prov.c                    |  143 +-
 net/nimble/host/mesh/src/prov.h                    |   27 +-
 net/nimble/host/mesh/src/proxy.c                   |  538 +++--
 net/nimble/host/mesh/src/proxy.h                   |    6 +-
 net/nimble/host/mesh/src/shell.c                   | 2118 ++++++++++++++++++++
 net/nimble/host/mesh/src/shell.h                   |    6 +
 net/nimble/host/mesh/src/slist.c                   |  323 +++
 net/nimble/host/mesh/src/transport.c               |  505 +++--
 net/nimble/host/mesh/src/transport.h               |  102 +-
 net/nimble/host/mesh/syscfg.yml                    |   95 +-
 net/nimble/host/syscfg.yml                         |    4 +-
 sys/shell/include/shell/shell.h                    |    2 +
 47 files changed, 10000 insertions(+), 2462 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@mynewt.apache.org" <co...@mynewt.apache.org>.