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

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


    from a24dcf2  Merge pull request #2299 from ccollins476ad/native_sock_fixes
     new 4b607cb  net/oic: make OC_MBUF_ENDPOINT use OS_MBUF_USRHDR
     new 635b97a  oc_ri: Don't over-copy on cb init
     new c327aa4  net/oic: Allow init/send of generic CoAP requests
     new fdf2974  net/oic: Separate "stream" code from BLE transport
     new 1b3a84d  TCP/IPv4 adaptor for CoAP
     new 077e669  Merge pull request #2300 from ccollins476ad/tcp3

The 9647 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 net/oic/include/oic/oc_api.h               |  12 +
 net/oic/include/oic/port/mynewt/ip.h       |   2 +
 net/oic/include/oic/port/mynewt/stream.h   |  95 +++++++
 net/oic/include/oic/port/mynewt/tcp4.h     |  71 +++++
 net/oic/include/oic/port/oc_connectivity.h |   6 +-
 net/oic/pkg.yml                            |   1 +
 net/oic/src/api/oc_client_api.c            |  93 +++----
 net/oic/src/api/oc_ri.c                    |   3 +-
 net/oic/src/messaging/coap/engine.c        |  20 +-
 net/oic/src/port/mynewt/ble_adaptor.c      | 156 +++++------
 net/oic/src/port/mynewt/ip4_adaptor.c      |   2 +
 net/oic/src/port/mynewt/stream.c           | 112 ++++++++
 net/oic/src/port/mynewt/tcp4_adaptor.c     | 425 +++++++++++++++++++++++++++++
 net/oic/syscfg.yml                         |  15 +
 14 files changed, 861 insertions(+), 152 deletions(-)
 create mode 100644 net/oic/include/oic/port/mynewt/stream.h
 create mode 100644 net/oic/include/oic/port/mynewt/tcp4.h
 create mode 100644 net/oic/src/port/mynewt/stream.c
 create mode 100644 net/oic/src/port/mynewt/tcp4_adaptor.c

Reply via email to