1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/sys/net
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
..
application_layer sys/net/nanocoap: use submodules 2017-12-01 12:55:45 +01:00
crosslayer sys/net/netopt: remove unused NETOPT_DEVICE_MODE 2017-12-09 20:06:57 +01:00
gnrc gnrc_netif: rename IPv6 address "setters" 2017-12-13 13:50:39 +01:00
link_layer net: added link layer address filter module 2017-05-18 15:24:25 +02:00
netdev_test netdev: Make set() value parameter const void * 2017-08-25 13:41:19 +02:00
network_layer ipv6_addr: provide fix for off-by-x error 2017-04-25 19:19:43 +02:00
routing gnrc: remove legacy network interface structures 2017-11-17 09:20:29 +01:00
sock sys: net: sock: add utility functions 2017-03-28 19:16:27 +02:00
transport_layer net: add tcp_hdr_print 2017-02-07 13:42:41 +01:00
doc.txt doc: add net to sys group 2015-08-30 14:00:33 +02:00