- Removed TODO
This commit is contained in:
Tristan Brice Velloza Kildaire 2024-12-14 14:35:58 +02:00
parent 66815f7f1a
commit ec9f6365d7

2
TAP.c
View File

@ -40,7 +40,7 @@ void localRand(struct in6_addr* ll_a)
struct in6_addr generateLinkLocal(char* interfaceName)
{
time_t t = time(NULL);
srand(t); // TODO: FIXME, use time or something
srand(t);
struct in6_addr ll_a;
memset(&ll_a, 0, sizeof(struct in6_addr));