Good plugin but …

but it crashes when no host set. So please, replace

if(!(host_base_ptr = malloc(sizeof(struct host_name_list)))) { line 314

by

if(!(host_base_ptr = calloc(1, sizeof(struct host_name_list)))) {

to zeroify the structure and avoid break here

while(host_ptr->next) { line 540

jeff