Searched refs:softp (Results 1 – 2 of 2) sorted by relevance
299 ipf_proxy_softc_t *softp; in ipf_proxy_soft_create() local304 KMALLOC(softp, ipf_proxy_softc_t *); in ipf_proxy_soft_create()305 if (softp == NULL) in ipf_proxy_soft_create()306 return (softp); in ipf_proxy_soft_create()308 bzero((char *)softp, sizeof(*softp)); in ipf_proxy_soft_create()311 softp->ips_proxy_debug = 0; in ipf_proxy_soft_create()313 softp->ips_proxy_debug = 2; in ipf_proxy_soft_create()315 softp->ips_proxy_session_size = AP_SESS_SIZE; in ipf_proxy_soft_create()317 softp->ipf_proxy_tune = ipf_tune_array_copy(softp, in ipf_proxy_soft_create()320 if (softp->ipf_proxy_tune == NULL) { in ipf_proxy_soft_create()[all …]
259 ipf_pool_softc_t *softp; in ipf_pool_soft_create() local261 KMALLOC(softp, ipf_pool_softc_t *); in ipf_pool_soft_create()262 if (softp == NULL) { in ipf_pool_soft_create()267 bzero((char *)softp, sizeof(*softp)); in ipf_pool_soft_create()269 softp->ipf_radix = ipf_rx_create(); in ipf_pool_soft_create()270 if (softp->ipf_radix == NULL) { in ipf_pool_soft_create()272 KFREE(softp); in ipf_pool_soft_create()276 return (softp); in ipf_pool_soft_create()291 ipf_pool_softc_t *softp = arg; in ipf_pool_soft_init() local293 ipf_rx_init(softp->ipf_radix); in ipf_pool_soft_init()[all …]