This documentation only describes four parts: NuFW, NuAuth, libnuclient and nutcpc.
NuFW is composed of three main parts:
To initialize the library, use:
NuAuth *session = NULL;
struct nuclient_error nuerror;
nu_client_global_init(&nuerror);
session = nu_client_init2(
"hostname", "4129",
NULL, NULL,
&get_username, &get_password, NULL,
&nuerror);
1.4.7