Home
last modified time | relevance | path

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

/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_proxy.c296 ipf_proxy_softc_t *softp; in ipf_proxy_soft_create() local
301 KMALLOC(softp, ipf_proxy_softc_t *); in ipf_proxy_soft_create()
302 if (softp == NULL) in ipf_proxy_soft_create()
303 return (softp); in ipf_proxy_soft_create()
305 bzero((char *)softp, sizeof(*softp)); in ipf_proxy_soft_create()
308 softp->ips_proxy_debug = 0; in ipf_proxy_soft_create()
310 softp->ips_proxy_debug = 2; in ipf_proxy_soft_create()
312 softp->ips_proxy_session_size = AP_SESS_SIZE; in ipf_proxy_soft_create()
314 softp->ipf_proxy_tune = ipf_tune_array_copy(softp, in ipf_proxy_soft_create()
317 if (softp->ipf_proxy_tune == NULL) { in ipf_proxy_soft_create()
[all …]
H A Dip_pool.c255 ipf_pool_softc_t *softp; in ipf_pool_soft_create() local
257 KMALLOC(softp, ipf_pool_softc_t *); in ipf_pool_soft_create()
258 if (softp == NULL) { in ipf_pool_soft_create()
263 bzero((char *)softp, sizeof(*softp)); in ipf_pool_soft_create()
265 softp->ipf_radix = ipf_rx_create(); in ipf_pool_soft_create()
266 if (softp->ipf_radix == NULL) { in ipf_pool_soft_create()
268 KFREE(softp); in ipf_pool_soft_create()
272 return (softp); in ipf_pool_soft_create()
287 ipf_pool_softc_t *softp = arg; in ipf_pool_soft_init() local
289 ipf_rx_init(softp->ipf_radix); in ipf_pool_soft_init()
[all …]