Home | History | Annotate | Download | only in racoon

Lines Matching defs:banner

1421  * Print ISAKMP mode config info (IP and banner)
1430 char *banner = NULL;
1470 banner = racoon_malloc(ntohs(attr->lorv) + 1);
1471 if (banner == NULL) {
1475 memcpy(banner, attr + 1, ntohs(attr->lorv));
1476 banner[ntohs(attr->lorv)] = '\0';
1495 if (banner) {
1505 printf("\n%s\n", banner);
1509 racoon_free(banner);