[riot-notifications] [RIOT-OS/RIOT] Add MUD URL option to DHCPv6 client (#15508)
Jan Romann
notifications at github.com
Sat Nov 28 01:36:20 CET 2020
@JKRhb commented on this pull request.
> @@ -247,6 +247,17 @@ static inline size_t _compose_elapsed_time_opt(dhcpv6_opt_elapsed_time_t *time)
return len + sizeof(dhcpv6_opt_t);
}
+static inline size_t _compose_mud_url_opt(dhcpv6_opt_mud_url_t *mud_url_opt,
+ char mud_url[])
+{
+ uint16_t len = strlen(mud_url);
+
+ mud_url_opt->type = byteorder_htons(DHCPV6_OPT_MUD_URL);
+ mud_url_opt->len = byteorder_htons(len);
+ strcpy(mud_url_opt->mudString, mud_url);
Oh, good point. Would using `strncpy` instead of `strcpy` solve this problem?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/RIOT-OS/RIOT/pull/15508#discussion_r531813667
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.riot-os.org/pipermail/notifications/attachments/20201127/719b4edb/attachment.htm>
More information about the notifications
mailing list