No description
Find a file
Ionuț-Alex Oprea 1d78413c74 Update feed [ feed_inteno_packages ] package [ owsd ]
-------------------------------------------------------------------------------
*   f0147e7 Merge branch 'ubusx_acl' into devel
|\
| * d13aeee fix checkpatch.pl warnings and errors
| * 6eac202 replace avl_strcmp with ubus_object_path_compare: proper comparison for object that end with *
| * d092c9e replace printf with lwsl_notice
| * ce1b001 fix compile warnings: type cast
| * a58a5de implement ubusx_acl__add_object to the avl tree
| * b45d846 ubusx_acl: if option is not used, allow all objects bu default
| * 6a4240c add include ubusx_acl.h in main.c
| * 18450f3 add ubusx_acl__add_objects method
| * 60158a8 add the -X option: ubusx acl
| * 2d98397 add the avl tree to keep the object names
| * c3afdb3 add ubusx_acl to makefile
| * 292b619 initial add ubusx_acl files
| * 7f7752e call the ubusx_acl methods
|/
* aed9de1 Create new vhost on -i if iface already defined
-------------------------------------------------------------------------------
commit f0147e754b1018ef51b96ec21f40b921a30e6a6e
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 16:15:32 +0200

    Merge branch 'ubusx_acl' into devel

Base directory -> /
 CMakeLists.txt      |   1 +
 src/main.c          |  11 ++++
 src/rpc_list_ubus.h |   6 ++
 src/ubusx_acl.c     | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ubusx_acl.h     |  36 ++++++++++++
 5 files changed, 213 insertions(+)
-------------------------------------------------------------------------------
commit d13aeee31979200f801e203dda58c0c7624ede9e
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 16:13:17 +0200

    fix checkpatch.pl warnings and errors

Base directory -> /
 src/main.c          |  2 +-
 src/rpc_list_ubus.h |  5 +++--
 src/ubusx_acl.c     | 25 +++++++++++++------------
 src/ubusx_acl.h     |  4 ++--
 4 files changed, 19 insertions(+), 17 deletions(-)
-------------------------------------------------------------------------------
commit 6eac202a77a9f3d2288e37ad82624075507c03cf
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 15:59:40 +0200

    replace avl_strcmp with ubus_object_path_compare: proper comparison for
    object that end with *

Base directory -> /
 src/ubusx_acl.c | 33 +++++++++++++++++++++++++++++++--
 1 file changed, 31 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit d092c9e1832c5c225adc708f027811319a06486a
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 15:27:58 +0200

    replace printf with lwsl_notice

Base directory -> /
 src/ubusx_acl.c | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)
-------------------------------------------------------------------------------
commit ce1b00135b25d8020813830df52c70aff674944a
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 13:54:53 +0200

    fix compile warnings: type cast

Base directory -> /
 src/ubusx_acl.c | 6 +++---
 src/ubusx_acl.h | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
-------------------------------------------------------------------------------
commit a58a5de270f1cf360f894fad875cba359ebe3fa3
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 13:49:43 +0200

    implement ubusx_acl__add_object to the avl tree

Base directory -> /
 src/ubusx_acl.c | 28 ++++++++++++++++++++++++----
 src/ubusx_acl.h |  2 +-
 2 files changed, 25 insertions(+), 5 deletions(-)
-------------------------------------------------------------------------------
commit b45d84696d8a77ede69c0176fa12c02b2fbf0890
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 12:00:44 +0200

    ubusx_acl: if option is not used, allow all objects bu default

Base directory -> /
 src/ubusx_acl.c | 4 ++++
 1 file changed, 4 insertions(+)
-------------------------------------------------------------------------------
commit 6a4240c5c9b9eb74ac0c2b864db1ffbd01b7d0b1
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 11:35:41 +0200

    add include ubusx_acl.h in main.c

Base directory -> /
 src/main.c | 1 +
 1 file changed, 1 insertion(+)
-------------------------------------------------------------------------------
commit 18450f3548a8b9f71c597ab73b544bfa144a552c
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 11:31:13 +0200

    add ubusx_acl__add_objects method

Base directory -> /
 src/main.c      |  1 +
 src/ubusx_acl.c | 18 ++++++++++++++++++
 src/ubusx_acl.h |  1 +
 3 files changed, 20 insertions(+)
-------------------------------------------------------------------------------
commit 60158a8c5a14a0dc18eb94d55584cbf174f57b5f
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-05 10:26:23 +0200

    add the -X option: ubusx acl

Base directory -> /
 src/main.c | 9 +++++++++
 1 file changed, 9 insertions(+)
-------------------------------------------------------------------------------
commit 2d98397f786954935946ceec29550e29a6e6e445
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-06-04 15:15:36 +0200

    add the avl tree to keep the object names

Base directory -> /
 src/ubusx_acl.c | 36 +++++++++++++++++++++++++++++++++++-
 1 file changed, 35 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit c3afdb3a6f5df1c7b8f23eafa7e86455a71851c5
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-05-30 16:57:42 +0200

    add ubusx_acl to makefile

Base directory -> /
 CMakeLists.txt  | 1 +
 src/ubusx_acl.c | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 292b61900a1e6b73d1fb6b205f627b69fb5c1b93
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-05-30 16:32:30 +0200

    initial add ubusx_acl files

Base directory -> /
 src/ubusx_acl.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ubusx_acl.h | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+)
-------------------------------------------------------------------------------
commit 7f7752eba0f65ac53cbdacf44c416a989e768f7d
Author: Ionuț-Alex Oprea <ionutalexoprea@gmail.com>
Date: 2018-05-30 16:30:54 +0200

    call the ubusx_acl methods

Base directory -> /
 src/rpc_list_ubus.h | 5 +++++
 1 file changed, 5 insertions(+)
-------------------------------------------------------------------------------
commit aed9de16f49d94bd5abf10a3038fd9a1712cec19
Author: Matija Amidzic <matija.amidzic@sartura.hr>
Date: 2018-02-27 11:27:44 +0100

    Create new vhost on -i if iface already defined

    New lws virtual host will now be created if option -i is specified multiple
    times on the same port(vhost). New vhost will have the same port and label
    as previous vhost.

    Signed-off-by: Matija Amidzic <matija.amidzic@sartura.hr>

Base directory -> /
 src/main.c | 75 +++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 52 insertions(+), 23 deletions(-)
-------------------------------------------------------------------------------
2018-06-05 16:26:26 +02:00
ated Use http url:s for public packets 2017-05-04 13:32:47 +02:00
bashdb Add bash debugger. 2017-03-23 10:07:43 +01:00
bootchart2 Add bootchart2. 2016-03-11 20:59:14 +01:00
catv changed back config from 0/1 to no/yes for backwords compability reasons 2016-08-31 15:27:01 +02:00
crashlog crashlog: put into syslog that we have received a file. 2015-09-24 13:15:44 +02:00
dectmngr2 Dect: fix long caller numbers couldn't be displayed. 2018-05-28 16:58:16 +02:00
endptmngr Dect: phone call disconnect works too. 2018-05-28 16:56:40 +02:00
eventlog eventlog package 2016-09-12 12:46:25 +02:00
fatrace fatrace: we need to flush every line when using a pipe. 2017-12-20 18:19:04 +01:00
fping fping: add package 2017-08-28 16:23:19 +02:00
gigaset-elements gigaset-elements 2.4.2 - dg400 integration, dectmngr2 support 2016-10-28 13:48:23 +02:00
ice-client new ice-client 5.1.1 2018-05-24 16:37:59 +02:00
icgroupd icgroupd: Disable RT-scheduling control due to mips malfunction 2016-04-20 10:24:12 +02:00
icwmp icwmp-4.0-2018-06-05 2018-06-05 13:56:48 +02:00
ifsi Fix circular dependency 2015-09-01 10:39:16 +02:00
imonitor Update feed [ feed_inteno_packages ] package [ imonitor ] 2018-06-05 15:55:24 +02:00
inbd Update feed [ feed_inteno_packages ] package [ inbd ] 2018-01-04 18:29:38 +01:00
inotify-tools Add inotify-tools, iop_write_monitor. 2016-02-25 18:19:22 +01:00
inteno-netmodes inteno-netmodes: netmode: change verbose level from debug to warning refs #15087 2018-05-24 15:06:15 +02:00
iop iop: remove p910nd from inteno default software 2018-05-24 10:13:54 +02:00
iop-lla-libs Update feed [ feed_inteno_packages ] package [ iop-lla-libs ] 2018-05-29 09:07:48 +02:00
iup iup: adapt option 132 implementation to new network config 2018-04-25 08:26:27 +02:00
iwatchdog iwatchdog: start earlier 10i < 1iw 2018-01-02 14:19:30 +01:00
libcgroup libcgroup: Add missing dependency on librt 2016-06-08 15:49:44 +02:00
libpicoevent Dect: endptmngr has got Dect support 2018-05-25 08:10:33 +02:00
libtrace Update feed [ feed_inteno_packages ] package [ libtrace ] 2017-04-06 10:44:45 +02:00
lmbench lmbench again. for real this time. 2016-09-02 15:07:05 +02:00
logrotate logrotate package added 2016-11-11 09:54:17 +01:00
loop-detector Update feed [ feed_inteno_packages ] package [ loop-detector ] 2017-11-07 16:37:49 +01:00
mtk-bndstrg Update feed [ feed_inteno_packages ] package [ mtk-bndstrg ] 2017-10-18 20:33:36 +05:30
multiwan multiwan: allow comma as separator in dns servers list 2017-01-18 16:43:51 +01:00
natalie-dect Build natalie-dect single threaded. for real this time. 2017-06-22 16:36:41 +02:00
natalie-dect-h Updated Natalie to version 12.26 2016-07-08 19:46:53 +02:00
ndisc ndisc package 2016-09-09 15:08:07 +02:00
owsd Update feed [ feed_inteno_packages ] package [ owsd ] 2018-06-05 16:26:26 +02:00
peripheral_manager peripheral_manager: ledctl with simplified API 2018-04-23 14:01:35 +02:00
picolisp add picolisp-3.1.10 2016-02-29 21:39:17 +01:00
port-management port-management: set uplink for wan port by default 2018-02-07 12:02:54 +01:00
power-management power-management: replace unexisting pwrctl command with correct one 2016-02-29 10:07:06 +01:00
questd Update feed [ feed_inteno_packages ] package [ questd ] 2018-04-19 16:57:28 +02:00
rulengd Update feed [ feed_inteno_packages ] package [ rulengd ] 2018-03-21 15:27:53 +01:00
samba2 samba2: fix build in Debian 9 2017-11-07 13:48:42 +01:00
samba3 Revert "samba3: create directories in start script." 2018-03-13 11:33:43 +01:00
sipcalc add sipcalc package 2015-12-18 11:18:47 +01:00
speedtest-cli Merged some of the quarantine files 2015-06-23 17:27:14 +02:00
syslog-ng3 syslong-ng3: depend on libeventlog 2016-09-12 12:46:25 +02:00
tptest tptest: remove tptest.bredband.net from list 2017-12-20 20:31:05 +01:00
tr064 TR064 for openwrt: release 1.0 2017-08-23 17:18:37 +01:00
uboot update uboot inteno version 2018-04-09 17:22:17 +02:00
ubus-mqtt Changed Makefiles to use HTTP URLs. 2016-02-19 11:24:32 +01:00
voice-client voice-client: fix security issue refs #14962 2018-05-18 17:11:56 +02:00
voicesec replaced ihgsp and iopsys urls 2016-03-09 16:13:34 +01:00
wifimngr Update feed [ feed_inteno_packages ] package [ wifimngr ] 2018-05-29 15:41:33 +02:00
wlng wlng: mark iopsys_ramips target as mediatek 2018-01-26 13:38:28 +01:00