Home | History | Annotate | Download | only in nlm

Lines Matching refs:addr_count

1432 nlm_register_services(SVCPOOL *pool, int addr_count, char **addrs)
1447 if (!addr_count) {
1452 if (addr_count < 0 || addr_count > 256 ) {
1454 "max 256 - can't start server\n", addr_count);
1458 xprts = malloc(addr_count * sizeof(SVCXPRT *), M_NLM, M_WAITOK|M_ZERO);
1460 for (j = 0; j < addr_count; j++) {
1516 for (j = 0; j < addr_count; j++) {
1531 nlm_server_main(int addr_count, char **addrs)
1624 error = nlm_register_services(pool, addr_count, addrs);
1723 return nlm_server_main(uap->addr_count, uap->addrs);