Home
last modified time | relevance | path

Searched refs:softp (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/sys/netpfil/ipfilter/netinet/
Dip_proxy.c300 ipf_proxy_softc_t *softp; in ipf_proxy_soft_create() local
305 KMALLOC(softp, ipf_proxy_softc_t *); in ipf_proxy_soft_create()
306 if (softp == NULL) in ipf_proxy_soft_create()
307 return (softp); in ipf_proxy_soft_create()
309 bzero((char *)softp, sizeof(*softp)); in ipf_proxy_soft_create()
312 softp->ips_proxy_debug = 0; in ipf_proxy_soft_create()
314 softp->ips_proxy_debug = 2; in ipf_proxy_soft_create()
316 softp->ips_proxy_session_size = AP_SESS_SIZE; in ipf_proxy_soft_create()
318 softp->ipf_proxy_tune = ipf_tune_array_copy(softp, in ipf_proxy_soft_create()
321 if (softp->ipf_proxy_tune == NULL) { in ipf_proxy_soft_create()
[all …]
Dip_pool.c259 ipf_pool_softc_t *softp; in ipf_pool_soft_create() local
261 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() local
293 ipf_rx_init(softp->ipf_radix); in ipf_pool_soft_init()
[all …]