You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/link.c

8 lines
252 B
C

6 years ago
#include <llarp/link.h>
bool llarp_link_initialized(struct llarp_link * link)
{
return link && link->impl && link->name && link->configure && link->start_link && link->stop_link && link->iter_sessions && link->try_establish && link->free_impl;
}