1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00
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
..
2017-11-10 14:19:08 +01:00
2017-09-06 08:49:05 +02:00
2017-06-27 18:58:33 +02:00
2016-09-05 02:22:37 +02:00
2017-06-16 16:50:54 +02:00
2017-03-20 11:59:10 +01:00
2017-09-06 08:49:05 +02:00
2016-12-16 09:48:08 +01:00
2017-09-06 16:10:36 +02:00
2016-11-09 11:59:45 +01:00
2017-11-16 14:40:16 +01:00
2017-05-24 17:54:01 +02:00
2016-04-08 23:53:46 +02:00
2017-12-01 16:14:27 +01:00
2017-07-03 10:55:35 +02:00
2017-10-26 15:13:11 +02:00
2017-06-27 18:05:14 +02:00
2017-12-01 12:55:44 +01:00