iopsys-feed/dectmngr2
Ronny Nilsson cd86ff9396 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* ee63f0c Kill third party proxy applications when we need to exit dectmngr2. They too need to restart. Gigaset ULE has an own watchdog and will restart by itself in 45 s (if in use). This is crude and of course we need a better API!
* 28dd5ba Default to radio auto mode if we can't understand the parameter (it may be of an old format).
* c084e7d Comments
* 6c4e378 Before starting a registration of handsets we always set the access code (PIN code) to 0000 due to third party applications also change the code sometimes and we might get out of sync.
* 26a15d5 Fix a compiler warning
* 73533fb Add support for third party proxy appliations. ULE daemon use this for communicating with Dect stack.
* 01e80ba Debug print what file descriptor we use
* 5043296 Fix memory leak if re-registering same device over and over again.
* 2620e49 Ignore ULE sensors, they are handled by another daemon. We only care of voice handsets.
* a849015 Always refresh the handset list, just in case.
* 04f8c99 Report error back if someone tries to start a call without first activating the radio.
* 742423b - When querying dectmngr2 with UBUS for state we also report Natalie version, radio spectrum type and fixed part RFPI. - Don't exit program if device RFPI is invalid, due to program must be running for factory setup tool (which writes new RFPI). Instead we issue a warning, both in log and via UBUS.
* ad2026e - Fixed issue where flash programming of Natalie V12.26 failed on ARM. refs #9584 - Add packet retransmitt support if we get no answer for a request. - Remove unused code. - Fix compiler warnings. - Cleanups
* baefb8d - Remove unused code. - Fix compiler warnings.
* 22527d5 - Correct arguments to calloc() - Fix many compiler warnings. - Add check for reading beyond buffer end. - Comments
-------------------------------------------------------------------------------
commit ee63f0c087840adba9d944ae31d71a3ef9d64043
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-20 15:13:18 +0200

    Kill third party proxy applications when we need to exit dectmngr2. They too
    need to restart. Gigaset ULE has an own watchdog and will restart by itself
    in 45 s (if in use). This is crude and of course we need a better API!

Base directory -> /
 src/connection_init.c | 10 ++++++++++
 1 file changed, 10 insertions(+)
-------------------------------------------------------------------------------
commit 28dd5ba319dacfe9aa15363002866644e902ce2e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-20 15:11:16 +0200

    Default to radio auto mode if we can't understand the parameter (it may be
    of an old format).

Base directory -> /
 src/ubus.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
-------------------------------------------------------------------------------
commit c084e7de33394bb786a0b8158556bfd3f743aab0
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-20 15:09:13 +0200

    Comments

Base directory -> /
 files/dectmngr-wrapper.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 6c4e3789d67484ee1574074a5f1bf59d1a974123
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-16 17:51:03 +0200

    Before starting a registration of handsets we always set the access code
    (PIN code) to 0000 due to third party applications also change the code
    sometimes and we might get out of sync.

Base directory -> /
 src/connection_init.c | 77 +++++++++++++++++++++++++++++++++++++++------------
 src/connection_init.h |  1 +
 2 files changed, 60 insertions(+), 18 deletions(-)
-------------------------------------------------------------------------------
commit 26a15d54f118ca8ae4237ab8f5f38394d3a165be
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-16 17:45:08 +0200

    Fix a compiler warning

Base directory -> /
 src/handset.c | 1 +
 1 file changed, 1 insertion(+)
-------------------------------------------------------------------------------
commit 73533fb3c9729fc16e37ab063730ba01b1b20207
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-15 17:50:50 +0200

    Add support for third party proxy appliations. ULE daemon use this for
    communicating with Dect stack.

Base directory -> /
 src/Makefile          |   2 +-
 src/app.c             |   2 +
 src/connection_init.c |  55 ++++++------
 src/connection_init.h |   1 +
 src/handset.c         |   4 +-
 src/rawmailproxy.c    | 227 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/rawmailproxy.h    |  23 +++++
 7 files changed, 283 insertions(+), 31 deletions(-)
-------------------------------------------------------------------------------
commit 01e80ba291b31786487f89c37b6b1f0fdfd6db83
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-15 17:47:14 +0200

    Debug print what file descriptor we use

Base directory -> /
 src/rawmail.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit 504329668e2a9bd56990abb77eabf7aa5e572890
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-14 16:32:11 +0200

    Fix memory leak if re-registering same device over and over again.

Base directory -> /
 src/handset.c | 1 +
 1 file changed, 1 insertion(+)
-------------------------------------------------------------------------------
commit 2620e49c8a84d40b1087b3939de8a659239ffd86
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-14 16:31:57 +0200

    Ignore ULE sensors, they are handled by another daemon. We only care of
    voice handsets.

Base directory -> /
 src/handset.c | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit a849015ff3d3f0964b9cdcceb498ada4df0144f8
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-14 16:31:01 +0200

    Always refresh the handset list, just in case.

Base directory -> /
 src/handset.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 04f8c99f88115c0aba0a2ae2925d6e3cf65029e7
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 17:40:02 +0200

    Report error back if someone tries to start a call without first activating
    the radio.

Base directory -> /
 src/external_call.c | 3 +++
 1 file changed, 3 insertions(+)
-------------------------------------------------------------------------------
commit 742423b37ba23d1d6e62ba28aa3ef1a827f7d9e7
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 17:38:45 +0200

    - When querying dectmngr2 with UBUS for state we also report Natalie
    version, radio spectrum type and fixed part RFPI. - Don't exit program if
    device RFPI is invalid, due to program must be running for factory setup
    tool (which writes new RFPI). Instead we issue a warning, both in log and
    via UBUS.

Base directory -> /
 src/connection_init.c | 100 ++++++++++++++++++++++++++++++++++++++++++--------
 src/connection_init.h |   7 +++-
 src/ubus.c            |  26 +++++++++++--
 3 files changed, 113 insertions(+), 20 deletions(-)
-------------------------------------------------------------------------------
commit ad2026e462bb9f5e8fb2b0625a61c1e530966f8e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 13:45:00 +0200

    - Fixed issue where flash programming of Natalie V12.26 failed on ARM. refs
    #9584 - Add packet retransmitt support if we get no answer for a request. -
    Remove unused code. - Fix compiler warnings. - Cleanups

Base directory -> /
 src/flashloader.c | 216 +++++++++++++++++++++++++-----------------------------
 1 file changed, 99 insertions(+), 117 deletions(-)
-------------------------------------------------------------------------------
commit baefb8dd4db285852d84b619f2a4a9c8c04a3bd6
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 11:00:27 +0200

    - Remove unused code. - Fix compiler warnings.

Base directory -> /
 src/busmail.c | 52 +---------------------------------------------------
 1 file changed, 1 insertion(+), 51 deletions(-)
-------------------------------------------------------------------------------
commit 22527d5e39c58d651086adbdeb668c68a6e20362
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 10:45:25 +0200

    - Correct arguments to calloc() - Fix many compiler warnings. - Add check
    for reading beyond buffer end. - Comments

Base directory -> /
 src/buffer.c | 38 +++++++++++++++++++++-----------------
 src/buffer.h | 26 +++++++++++++-------------
 2 files changed, 34 insertions(+), 30 deletions(-)
-------------------------------------------------------------------------------
2016-09-21 15:17:33 +02:00
..
files dectmngr2: add dect.config file 2016-05-19 16:32:23 +02:00
Makefile Update feed [ feed_inteno_packages ] package [ dectmngr2 ] 2016-09-21 15:17:33 +02:00