Return-Path: From: Ravi kumar Veeramally To: linux-bluetooth@vger.kernel.org Cc: Ravi kumar Veeramally Subject: [PATCH_v3 0/7] Refactor bnep code and implement pan methods Date: Fri, 29 Nov 2013 11:53:59 +0200 Message-Id: <1385718846-19070-1-git-send-email-ravikumar.veeramally@linux.intel.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: v3: Fixed Anderson and Luiz comments and solved rebased conflicts. v2: Refactored profiles/network/common.* as per Johan's comments (renaming common.c|h to bnep.c|h and moving bnep related code to bnep.c ro reduce redundancy in profiles/netowrk/connection.c and android/pan.c) v1: This patch set supports PANU role with a minor fix in android. Added CAP_NET_RAW capability for bnep services. Creates bnep connection and up the inreface on connect call and free the device on disconnect call. Interface name(bnepX) will be notified on control state cb. Android environment will create IP address with dhcp calls. Ravi kumar Veeramally (7): profiles/network: Remove redundant code for bnep interface name profiles/network: Refactor bnep connection setup functionality profiles/network: Rename common.c|h to bnep.c|h android/pan: Implement pan connect method in daemon android/pan: Implement pan disconnect method in daemon android/pan: Implement the get local role method in daemon android: Add reasons for adding capabilites to process Makefile.plugins | 2 +- android/Android.mk | 2 + android/Makefile.am | 3 +- android/main.c | 3 + android/pan.c | 252 ++++++++++++++++++++++++++++++++-- profiles/network/{common.c => bnep.c} | 184 ++++++++++++++++++++++++- profiles/network/{common.h => bnep.h} | 5 + profiles/network/connection.c | 171 ++--------------------- profiles/network/manager.c | 2 +- profiles/network/server.c | 5 +- 10 files changed, 452 insertions(+), 177 deletions(-) rename profiles/network/{common.c => bnep.c} (59%) rename profiles/network/{common.h => bnep.h} (87%) -- 1.8.3.2