[riot-notifications] [RIOT-OS/RIOT] Add MUD URL option to DHCPv6 client (#15508)
benpicco
notifications at github.com
Thu Nov 26 21:37:16 CET 2020
@benpicco 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);
no length check if there is enough space left in the destination buffer?
--
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#pullrequestreview-539541975
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.riot-os.org/pipermail/notifications/attachments/20201126/487bdda3/attachment.htm>
More information about the notifications
mailing list