Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B7358200C2C for ; Fri, 3 Mar 2017 18:36:20 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B5A3A160B81; Fri, 3 Mar 2017 17:36:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0CFF8160B6D for ; Fri, 3 Mar 2017 18:36:19 +0100 (CET) Received: (qmail 70174 invoked by uid 500); 3 Mar 2017 17:36:19 -0000 Mailing-List: contact commits-help@mynewt.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mynewt.incubator.apache.org Delivered-To: mailing list commits@mynewt.incubator.apache.org Received: (qmail 70165 invoked by uid 99); 3 Mar 2017 17:36:19 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2017 17:36:19 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id D269C18E86C for ; Fri, 3 Mar 2017 17:36:18 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.567 X-Spam-Level: X-Spam-Status: No, score=-6.567 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999, SPF_NEUTRAL=0.652] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id eCcakvsThyrh for ; Fri, 3 Mar 2017 17:36:18 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 50EC45FAE8 for ; Fri, 3 Mar 2017 17:36:17 +0000 (UTC) Received: (qmail 70058 invoked by uid 99); 3 Mar 2017 17:36:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2017 17:36:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 41EA1E004D; Fri, 3 Mar 2017 17:36:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: ccollins@apache.org To: commits@mynewt.incubator.apache.org Date: Fri, 03 Mar 2017 17:36:23 -0000 Message-Id: <7955c33817cd4c60baf513289a84ab54@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [08/26] incubator-mynewt-core git commit: bletiny: Add debug log for CoC accept archived-at: Fri, 03 Mar 2017 17:36:20 -0000 bletiny: Add debug log for CoC accept 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/3d756b3f Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/3d756b3f Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/3d756b3f Branch: refs/heads/develop Commit: 3d756b3fb2a91a6865b8c1ddb7f66242ebb0289b Parents: be58d00 Author: Łukasz Rymanowski Authored: Thu Feb 16 06:29:56 2017 +0100 Committer: Łukasz Rymanowski Committed: Fri Mar 3 12:40:41 2017 +0100 ---------------------------------------------------------------------- apps/bletiny/src/main.c | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/3d756b3f/apps/bletiny/src/main.c ---------------------------------------------------------------------- diff --git a/apps/bletiny/src/main.c b/apps/bletiny/src/main.c index b8f1e51..442a264 100755 --- a/apps/bletiny/src/main.c +++ b/apps/bletiny/src/main.c @@ -1643,6 +1643,9 @@ bletiny_l2cap_coc_accept(uint16_t conn_handle, uint16_t peer_mtu, { struct os_mbuf *sdu_rx; + console_printf("LE CoC accepting, chan: 0x%08lx, peer_mtu %d\n", + (uint32_t) chan, peer_mtu); + sdu_rx = os_mbuf_get_pkthdr(&sdu_os_mbuf_pool, 0); if (!sdu_rx) { return BLE_HS_ENOMEM;