1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/gnrc/routing/rpl
Martine Lenders 2ae30cf582 gnrc_netif: rename IPv6 address "setters"
This renames the following functions

* `gnrc_netif_ipv6_addr_add()`
* `gnrc_netif_ipv6_addr_remove()`
* `gnrc_netif_ipv6_group_join()`
* `gnrc_netif_ipv6_group_leave()`

by appending the suffix `_internal`.

\## Reasoning

I'd like to provide a helper function for the *public* equivalent using
`gnrc_netapi_set()`, and those names are to nice to not be taken for
those.

\## Procedure
I used a combination of `git grep` and `sed` to do this and fixed the
alignment in the result of some cases by hand.

```sh
git grep --name-only "\<gnrc_netif_ipv6_\(addr\|group\)_\(add\|remove\|join\|leave\)\>" | \
        xargs sed -i 's/\<gnrc_netif_ipv6_\(addr\|group\)_\(add\|remove\|join\|leave\)/\0_internal/g'
```
2017-12-13 13:50:39 +01:00
..
gnrc_rpl_internal Merge pull request #6901 from BytesGalore/rpl_drop_dao_ack_on_mc 2017-05-30 21:28:58 +02:00
p2p rpl: replace fib with nib 2017-11-20 00:35:17 +01:00
srh gnrc_netif2: rename to gnrc_netif 2017-11-17 10:41:54 +01:00
gnrc_rpl_auto_init.c gnrc_netif2: rename to gnrc_netif 2017-11-17 10:41:54 +01:00
gnrc_rpl_control_messages.c gnrc_netif: rename IPv6 address "setters" 2017-12-13 13:50:39 +01:00
gnrc_rpl_dodag.c gnrc_rpl: remove redundant iface variable 2017-11-24 00:20:32 +01:00
gnrc_rpl_of_manager.c gnrc: make all gnrc modules sub-modules of gnrc 2015-08-18 23:00:07 +02:00
gnrc_rpl_validation.c gnrc_rpl: separate validation from msg handling 2016-06-01 09:05:24 +02:00
gnrc_rpl.c gnrc_netif: rename IPv6 address "setters" 2017-12-13 13:50:39 +01:00
Makefile gnrc: make all gnrc modules sub-modules of gnrc 2015-08-18 23:00:07 +02:00
of0.c rpl: Sort list of parents 2017-08-22 16:03:16 +02:00
of0.h gnrc: make all gnrc modules sub-modules of gnrc 2015-08-18 23:00:07 +02:00