All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] Resubmit Zhenhua Zhang work on DUN server with btio
@ 2011-01-12 17:15 =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
  2011-01-12 17:15 ` [PATCH 01/21] bluetooth: Add reference count for bluetooth utils =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
                   ` (22 more replies)
  0 siblings, 23 replies; 30+ messages in thread
From: =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau @ 2011-01-12 17:15 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 2435 bytes --]

This is rebased as of head of today

Zhenhua Zhang (21):
  bluetooth: Add reference count for bluetooth utils
  bluetooth: Add Btio library for DUN
  bluetooth: Add bluetooth server support for DUN
  emulator: Add emulator atom in oFono
  dun_gw: Add DUN server plugin for oFono
  gprs: Rename status_watch to netreg_status_watch
  emulator: Add status watches for ofono emulator
  emulator: Add emulator status watches in gprs atom
  emulator: Add APIs to send GAtServer result
  emulator: Implement dialing up for DUN
  gprs: Make gprs_proto_to/from_string non-static
  gprs: ignore the case of proto str when comparing
  emulator: Register mandatory AT command handlers
  gprs: Refactor to share remove_context method
  gprs: Add DUN +CGATT support in gprs atom
  gprs: Add DUN +CGDCONT support in gprs atom
  gprs: Add DUN server GPRS connect support
  gprs: Add status watch functions
  gprs: Add gprs_get_status
  emulator: Watch GPRS status changes
  emulator: Watch netreg status changes

 Makefile.am            |   15 +-
 btio/btio.c            | 1299 ++++++++++++++++++++++++++++++++++++++++++++++++
 btio/btio.h            |   97 ++++
 configure.ac           |    5 +
 include/emulator.h     |   94 ++++
 include/gprs-context.h |    4 +
 include/gprs.h         |   11 +
 plugins/bluetooth.c    |  441 ++++++++++++++++-
 plugins/bluetooth.h    |   15 +
 plugins/dun_gw.c       |  115 +++++
 src/emulator.c         | 1072 +++++++++++++++++++++++++++++++++++++++
 src/gprs.c             |  500 +++++++++++++++++--
 src/modem.c            |    1 +
 src/ofono.h            |   31 ++
 14 files changed, 3636 insertions(+), 64 deletions(-)
 create mode 100644 btio/btio.c
 create mode 100644 btio/btio.h
 create mode 100644 include/emulator.h
 create mode 100644 plugins/dun_gw.c
 create mode 100644 src/emulator.c

---------------------------------------------------------------------
Intel Corporation SAS (French simplified joint stock company)
Registered headquarters: "Les Montalets"- 2, rue de Paris, 
92196 Meudon Cedex, France
Registration Number:  302 456 199 R.C.S. NANTERRE
Capital: 4,572,000 Euros

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [PATCH 00/21] Add DUN server for oFono
@ 2010-09-29  9:44 Zhenhua Zhang
  2010-09-29  9:44 ` [PATCH 02/21] bluetooth: Add Btio library for DUN Zhenhua Zhang
  0 siblings, 1 reply; 30+ messages in thread
From: Zhenhua Zhang @ 2010-09-29  9:44 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 288 bytes --]

Hi,

I rebase my DUN patches with latest git tree and combine them here. For some reason, I cann't continue to work on this feature. I hope someone interested about it could pick up these patches and continue this work.

Please feel free to give your comments.

Thanks,
Zhenhua


^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2011-01-25 19:07 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-12 17:15 [PATCH 00/21] Resubmit Zhenhua Zhang work on DUN server with btio =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 01/21] bluetooth: Add reference count for bluetooth utils =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 02/21] bluetooth: Add Btio library for DUN =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-13 23:31   ` Denis Kenzior
2011-01-12 17:15 ` [PATCH 03/21] bluetooth: Add bluetooth server support " =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 04/21] emulator: Add emulator atom in oFono =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 05/21] dun_gw: Add DUN server plugin for oFono =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 06/21] gprs: Rename status_watch to netreg_status_watch =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 07/21] emulator: Add status watches for ofono emulator =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 08/21] emulator: Add emulator status watches in gprs atom =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 09/21] emulator: Add APIs to send GAtServer result =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 10/21] emulator: Implement dialing up for DUN =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 11/21] gprs: Make gprs_proto_to/from_string non-static =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 12/21] gprs: ignore the case of proto str when comparing =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 13/21] emulator: Register mandatory AT command handlers =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 14/21] gprs: Refactor to share remove_context method =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 15/21] gprs: Add DUN +CGATT support in gprs atom =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:15 ` [PATCH 16/21] gprs: Add DUN +CGDCONT " =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:16 ` [PATCH 17/21] gprs: Add DUN server GPRS connect support =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:16 ` [PATCH 18/21] gprs: Add status watch functions =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:16 ` [PATCH 19/21] gprs: Add gprs_get_status =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:16 ` [PATCH 20/21] emulator: Watch GPRS status changes =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-12 17:16 ` [PATCH 21/21] emulator: Watch netreg " =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-13  9:18 ` [PATCH 00/21] Resubmit Zhenhua Zhang work on DUN server with btio =?unknown-8bit?q?R=C3=A9mi?= Denis-Courmont
2011-01-13 12:01   ` =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-13 12:17     ` =?unknown-8bit?q?R=C3=A9mi?= Denis-Courmont
2011-01-13 14:07       ` =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-01-13 14:20         ` =?unknown-8bit?q?R=C3=A9mi?= Denis-Courmont
2011-01-25 19:07 ` Gustavo F. Padovan
  -- strict thread matches above, loose matches on Subject: below --
2010-09-29  9:44 [PATCH 00/21] Add DUN server for oFono Zhenhua Zhang
2010-09-29  9:44 ` [PATCH 02/21] bluetooth: Add Btio library for DUN Zhenhua Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.